Files
piratepoet/.eslintrc.es5.json
Amine Ben hammou 95551ad049 ES5 keyword-spacing
2017-09-21 09:13:36 +00:00

63 lines
1.3 KiB
JSON

{
"extends": "airbnb/legacy",
"env": {
"amd": true,
"browser": true
},
"parserOptions": {
"ecmaVersion": 5
},
"rules": {
"import/no-amd": 0,
"prefer-arrow-callback": 0,
"radix": 0,
"no-alert": 0,
"block-scoped-var": 0,
"guard-for-in": 0,
"no-prototype-builtins": 0,
"no-restricted-syntax": 0,
"no-useless-concat": 0,
"no-nested-ternary": 0,
"no-sequences": 0,
"no-useless-return": 0,
"array-callback-return": 0,
"new-cap": 0,
"no-continue": 0,
"no-new": 0,
"no-redeclare": 0,
"no-console": 0,
"no-empty": 0,
"no-useless-escape": 0,
"wrap-iife": 0,
"no-plusplus": 0,
"default-case": 0,
"no-lonely-if": 0,
"no-mixed-operators": 0,
"eqeqeq": 0,
"max-len": 0,
"global-require": 0,
"no-throw-literal": 0,
"no-extra-bind": 0,
"one-var-declaration-per-line": 0,
"consistent-return": 0,
"no-shadow": 0,
"no-underscore-dangle": 0,
"brace-style": 0,
"no-else-return": 0,
"no-use-before-define": 0,
"one-var": 0,
"camelcase": 0,
"padded-blocks": 0,
"strict": 0,
"vars-on-top": 0,
"no-var": 0,
"no-unused-vars": 0,
"object-shorthand": 0,
"new-parens": 0,
"eol-last": 0,
"dot-notation": 0,
"prefer-template": 0,
"func-names": 0
}
}