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.
20 lines
564 B
20 lines
564 B
{
|
|
"env": {
|
|
"browser": true
|
|
},
|
|
"useEslintrc": false,
|
|
"extends": "eslint:all",
|
|
"rules": {
|
|
"quotes": ["warn", "double"],
|
|
"no-var": "off",
|
|
"require-jsdoc": "off",
|
|
"func-names": ["warn", "never"],
|
|
"max-len": ["warn", { "code": 140 }],
|
|
"operator-linebreak": ["warn", "before"],
|
|
"padded-blocks": ["warn", "never"],
|
|
"dot-notation": ["warn", { "allowPattern": "^[a-z]+(_[a-z]+)+$" }],
|
|
"dot-location": ["warn", "property"],
|
|
"object-curly-spacing": ["warn", "always"],
|
|
"no-extra-parens": ["warn", "all", { "nestedBinaryExpressions": false }]
|
|
}
|
|
} |