You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

38 lines
694 B

{
"tabWidth": 2,
"useTabs": false,
"endOfLine": "lf",
"semi": true,
"singleQuote": false,
"printWidth": 80,
"trailingComma": "es5",
"bracketSpacing": true,
"bracketSameLine": false,
"overrides": [
{
"files": ["*.js", "*.mjs", "*.jsx"],
"options": {
"parser": "flow",
"arrowParens": "always"
}
},
{
"files": ["*.config.js"],
"options": {
"semi": false,
"parser": "flow",
"trailingComma": "none"
}
},
{
"files": "*.html",
"options": {
"bracketSameLine": true
}
},
{
"files": ".prettierrc",
"options": { "parser": "json" }
}
]
}