2016-08-23 08:26:42 +00:00
|
|
|
{
|
2018-02-19 21:00:18 +00:00
|
|
|
"root": true,
|
2016-08-23 08:26:42 +00:00
|
|
|
"env": {
|
2016-10-04 14:39:54 +00:00
|
|
|
"browser": true,
|
2016-11-22 03:11:33 +00:00
|
|
|
"es6": true,
|
|
|
|
"commonjs": true
|
2016-08-23 08:26:42 +00:00
|
|
|
},
|
2018-06-11 08:05:52 +00:00
|
|
|
"plugins": [
|
|
|
|
"es5"
|
|
|
|
],
|
|
|
|
"extends": [
|
|
|
|
"eslint:recommended"
|
|
|
|
],
|
2016-08-23 15:25:58 +00:00
|
|
|
"globals": {
|
2017-09-13 14:27:43 +00:00
|
|
|
"WEBGL_RENDERER": true,
|
|
|
|
"CANVAS_RENDERER": true,
|
2016-08-23 15:25:58 +00:00
|
|
|
"Phaser": true,
|
2018-02-16 19:08:23 +00:00
|
|
|
"process": true,
|
2018-08-07 02:16:48 +00:00
|
|
|
"ActiveXObject": true,
|
|
|
|
"FBInstant": true
|
2016-08-23 15:25:58 +00:00
|
|
|
},
|
2016-08-23 08:26:42 +00:00
|
|
|
"rules": {
|
2016-08-23 15:25:58 +00:00
|
|
|
|
2018-06-11 08:05:52 +00:00
|
|
|
"es5/no-arrow-functions": 2,
|
|
|
|
"es5/no-binary-and-octal-literals": 2,
|
|
|
|
"es5/no-block-scoping": 2,
|
|
|
|
"es5/no-classes": 2,
|
|
|
|
"es5/no-computed-properties": 2,
|
|
|
|
"es5/no-default-parameters": 2,
|
|
|
|
"es5/no-destructuring": 2,
|
|
|
|
"es5/no-es6-static-methods": 2,
|
|
|
|
"es5/no-for-of": 2,
|
|
|
|
"es5/no-generators": 2,
|
|
|
|
"es5/no-modules": 2,
|
|
|
|
"es5/no-object-super": 2,
|
|
|
|
"es5/no-rest-parameters": 2,
|
|
|
|
"es5/no-shorthand-properties": 2,
|
|
|
|
"es5/no-spread": 2,
|
|
|
|
"es5/no-template-literals": 2,
|
|
|
|
"es5/no-typeof-symbol": 2,
|
|
|
|
"es5/no-unicode-code-point-escape": 2,
|
|
|
|
"es5/no-unicode-regex": 2,
|
|
|
|
|
2016-08-23 15:25:58 +00:00
|
|
|
"no-cond-assign": [ "error", "except-parens" ],
|
|
|
|
"no-duplicate-case": [ "error" ],
|
|
|
|
|
|
|
|
"accessor-pairs": "error",
|
|
|
|
"curly": "error",
|
|
|
|
"eqeqeq": [ "error", "smart" ],
|
|
|
|
"no-alert": "error",
|
|
|
|
"no-caller": "error",
|
2016-10-04 14:39:54 +00:00
|
|
|
"no-console": [ "error", { "allow": ["warn", "log"] } ],
|
2016-08-23 15:25:58 +00:00
|
|
|
"no-floating-decimal": "error",
|
|
|
|
"no-invalid-this": "error",
|
|
|
|
"no-multi-spaces": "error",
|
|
|
|
"no-multi-str": "error",
|
|
|
|
"no-new-func": "error",
|
|
|
|
"no-new-wrappers": "error",
|
|
|
|
"no-redeclare": "error",
|
|
|
|
"no-self-assign": "error",
|
|
|
|
"no-self-compare": "error",
|
|
|
|
"yoda": [ "error", "never" ],
|
|
|
|
|
|
|
|
"array-bracket-spacing": [ "error", "always" ],
|
|
|
|
"block-spacing": [ "error", "always" ],
|
|
|
|
"brace-style": [ "error", "allman", { "allowSingleLine": true } ],
|
|
|
|
"camelcase": "error",
|
|
|
|
"comma-dangle": [ "error", "never" ],
|
|
|
|
"comma-style": [ "error", "last" ],
|
|
|
|
"computed-property-spacing": [ "error", "never" ],
|
|
|
|
"consistent-this": [ "error", "_this" ],
|
|
|
|
"eol-last": [ "error" ],
|
|
|
|
"func-call-spacing": [ "error", "never" ],
|
2016-10-03 20:46:39 +00:00
|
|
|
"indent": [ "error", 4, { "SwitchCase": 1 } ],
|
2018-07-23 14:53:14 +00:00
|
|
|
"key-spacing": [ "error", { "beforeColon": false, "afterColon": true } ],
|
|
|
|
"keyword-spacing": [ "error", { "after": true } ],
|
2016-08-23 15:25:58 +00:00
|
|
|
"linebreak-style": [ "off" ],
|
2018-01-21 13:04:28 +00:00
|
|
|
"lines-around-comment": [ "error", { "beforeBlockComment": true, "afterBlockComment": false, "beforeLineComment": true, "afterLineComment": false, "allowBlockStart": true, "allowBlockEnd": false, "allowObjectStart": true, "allowArrayStart": true }],
|
2016-08-23 15:25:58 +00:00
|
|
|
"new-parens": "error",
|
2018-04-20 00:10:04 +00:00
|
|
|
"no-constant-condition": 0,
|
2016-08-23 15:25:58 +00:00
|
|
|
"no-array-constructor": "error",
|
|
|
|
"no-lonely-if": "error",
|
|
|
|
"no-mixed-spaces-and-tabs": "error",
|
|
|
|
"no-plusplus": "off",
|
2020-07-13 13:16:43 +00:00
|
|
|
"no-prototype-builtins": "off",
|
2018-01-16 12:58:36 +00:00
|
|
|
"no-trailing-spaces": [ "error", { "skipBlankLines": true, "ignoreComments": true } ],
|
2016-08-23 15:25:58 +00:00
|
|
|
"no-underscore-dangle": "off",
|
|
|
|
"no-whitespace-before-property": "error",
|
2019-01-29 17:19:46 +00:00
|
|
|
"object-curly-newline": [ "error", { "multiline": true, "minProperties": 0, "consistent": true } ],
|
2016-08-23 15:25:58 +00:00
|
|
|
"one-var-declaration-per-line": [ "error", "initializations" ],
|
|
|
|
"quote-props": [ "error", "as-needed" ],
|
|
|
|
"quotes": [ "error", "single" ],
|
|
|
|
"semi-spacing": [ "error", { "before": false, "after": true } ],
|
|
|
|
"semi": [ "error", "always" ],
|
|
|
|
"space-before-blocks": "error",
|
|
|
|
"space-before-function-paren": "error",
|
|
|
|
"space-in-parens": [ "error", "never" ],
|
|
|
|
"space-infix-ops": [ "error", { "int32Hint": true } ],
|
2018-01-16 12:58:36 +00:00
|
|
|
"wrap-regex": "error",
|
2018-01-21 13:04:28 +00:00
|
|
|
"spaced-comment": [ "error", "always", { "block": { "balanced": true, "exceptions": ["*", "!"] }} ]
|
2016-08-23 15:25:58 +00:00
|
|
|
|
2016-08-23 08:26:42 +00:00
|
|
|
}
|
2018-01-21 13:04:28 +00:00
|
|
|
}
|