yomichan/.eslintrc.json

22 lines
549 B
JSON
Raw Normal View History

2019-11-25 05:40:30 +00:00
{
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 8
},
"rules": {
"arrow-parens": ["error", "as-needed"],
"comma-dangle": ["error", "never"],
"dot-notation": "error",
"eqeqeq": 2,
"no-case-declarations": "error",
"no-const-assign": 2,
"no-undef": 0,
"no-unused-vars": 0,
"no-var": 2,
"prefer-const": 2,
"quote-props": ["error", "consistent"],
"quotes": [2, "single", "avoid-escape"],
"semi": 2
}
}