ajv/.eslintrc.json

31 lines
913 B
JSON
Raw Normal View History

2016-02-02 21:55:02 +03:00
{
"rules": {
"indent": [ 2, 2, {"SwitchCase": 1} ],
2016-02-26 23:25:15 +03:00
"no-trailing-spaces": 2,
2016-02-02 21:55:02 +03:00
"quotes": [ 2, "single", "avoid-escape" ],
"linebreak-style": [ 2, "unix" ],
"semi": [ 2, "always" ],
"valid-jsdoc": [ 2, { "requireReturn": false } ],
2016-02-05 01:24:59 +03:00
"no-invalid-this": 2,
2016-02-05 01:36:12 +03:00
"no-console": [ 2, { "allow": ["warn", "error"] } ],
2016-02-02 21:55:02 +03:00
"block-scoped-var": 2,
"complexity": [2, 13],
"curly": [2, "multi-or-nest", "consistent"],
"dot-location": [2, "property"],
"dot-notation": 2,
"no-else-return": 2,
"no-eq-null": 2,
"no-fallthrough": 2,
"no-return-assign": 2,
"strict": [2, "global"],
2016-02-05 01:24:59 +03:00
"no-shadow": 1,
2016-02-02 21:55:02 +03:00
"no-use-before-define": [2, "nofunc"],
"callback-return": 2
},
"env": {
"node": true,
"browser": true
},
"extends": "eslint:recommended"
}