-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.41 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@nivalis/prettier-config",
"version": "3.4.1",
"packageManager": "[email protected]",
"description": "Prettier config used at Nivalis Studio",
"keywords": [
"prettier",
"prettier config"
],
"license": "MIT",
"homepage": "https://github.com/nivalis-studio/prettier-config#readme",
"bugs": {
"url": "https://github.com/nivalis-studio/prettier-config/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nivalis-studio/prettier-config.git"
},
"files": [
"index.js"
],
"main": "index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0"
},
"dependencies": {
"prettier": "3.4.1"
},
"prettier": {
"arrowParens": "avoid",
"bracketSpacing": true,
"jsxSingleQuote": true,
"singleQuote": true,
"trailingComma": "all",
"useTabs": false,
"proseWrap": "always",
"printWidth": 80,
"tabWidth": 2,
"bracketSameLine": false,
"embeddedLanguageFormatting": "auto",
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"quoteProps": "preserve",
"requirePragma": false,
"semi": true,
"singleAttributePerLine": false,
"overrides": [
{
"files": [
"**/*.json"
],
"options": {
"useTabs": false
}
},
{
"files": [
"**/*.yml",
"**/*.yaml"
],
"options": {
"useTabs": false,
"singleQuote": false
}
}
]
}
}