37 lines
740 B
Plaintext
37 lines
740 B
Plaintext
{
|
|
"overrides": [
|
|
{
|
|
"files": "*.js",
|
|
"options": {
|
|
"arrowParens": "avoid",
|
|
"bracketSpacing": false,
|
|
"bracketSameLine": true,
|
|
"printWidth": 80,
|
|
"singleQuote": true,
|
|
"trailingComma": "es5",
|
|
"endOfLine": "auto"
|
|
}
|
|
},
|
|
{
|
|
"files": "*.md",
|
|
"options": {
|
|
"arrowParens": "always",
|
|
"bracketSpacing": true,
|
|
"bracketSameLine": true,
|
|
"printWidth": 66,
|
|
"proseWrap": "preserve",
|
|
"singleQuote": true,
|
|
"trailingComma": "none",
|
|
"endOfLine": "auto"
|
|
}
|
|
},
|
|
{
|
|
"files": ["*.scss", "*.css"],
|
|
"options": {
|
|
"printWidth": 80,
|
|
"endOfLine": "auto"
|
|
}
|
|
}
|
|
]
|
|
}
|