You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
646 B
JSON
42 lines
646 B
JSON
{
|
|
"root": true,
|
|
"parser": "@babel/eslint-parser",
|
|
"extends": [
|
|
"xo/browser",
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"rules": {
|
|
"capitalized-comments": "off",
|
|
"indent": [
|
|
"error",
|
|
2,
|
|
{
|
|
"MemberExpression": "off",
|
|
"SwitchCase": 1
|
|
}
|
|
],
|
|
"max-params": [
|
|
"warn",
|
|
5
|
|
],
|
|
"multiline-ternary": [
|
|
"error",
|
|
"always-multiline"
|
|
],
|
|
"new-cap": [
|
|
"error",
|
|
{
|
|
"properties": false
|
|
}
|
|
],
|
|
"object-curly-spacing": [
|
|
"error",
|
|
"always"
|
|
],
|
|
"quote-props": [
|
|
"error",
|
|
"consistent-as-needed"
|
|
]
|
|
}
|
|
}
|