mirror of
https://github.com/photonstorm/phaser
synced 2024-11-10 07:04:31 +00:00
Configuring ESLint.
This commit is contained in:
parent
08809217cd
commit
325b3a2857
3 changed files with 87 additions and 16 deletions
17
.eslintignore
Normal file
17
.eslintignore
Normal file
|
@ -0,0 +1,17 @@
|
|||
node_modules/*
|
||||
build/*
|
||||
dist/*
|
||||
docs/*
|
||||
filters/*
|
||||
resources/*
|
||||
tasks/*
|
||||
typescript/*
|
||||
src/Intro.js
|
||||
src/Outro.js
|
||||
src/pixi/*
|
||||
src/plugins/path/*
|
||||
src/physics/p2/p2.js
|
||||
src/animation/creature/gl-matrix.js
|
||||
src/animation/creature/CreatureMeshBone.js
|
||||
src/gameobjects/Creature.js
|
||||
src/stubs/*
|
|
@ -3,22 +3,67 @@
|
|||
"browser": true
|
||||
},
|
||||
"extends": "eslint:recommended",
|
||||
"globals": {
|
||||
"PhaserGlobal": true,
|
||||
"Phaser": true,
|
||||
"PIXI": true,
|
||||
"p2": true
|
||||
},
|
||||
"rules": {
|
||||
"indent": [
|
||||
"error",
|
||||
4
|
||||
],
|
||||
"linebreak-style": [
|
||||
"error",
|
||||
"unix"
|
||||
],
|
||||
"quotes": [
|
||||
"error",
|
||||
"single"
|
||||
],
|
||||
"semi": [
|
||||
"error",
|
||||
"always"
|
||||
]
|
||||
|
||||
"no-cond-assign": [ "error", "except-parens" ],
|
||||
"no-duplicate-case": [ "error" ],
|
||||
|
||||
"accessor-pairs": "error",
|
||||
"curly": "error",
|
||||
"eqeqeq": [ "error", "smart" ],
|
||||
"no-alert": "error",
|
||||
"no-caller": "error",
|
||||
"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" ],
|
||||
"indent": [ "error", 4 ],
|
||||
"key-spacing": [ "error", { "beforeColon": false, "afterColon": true }],
|
||||
"linebreak-style": [ "off" ],
|
||||
"lines-around-comment": [ "error", { "beforeBlockComment": true }],
|
||||
"new-parens": "error",
|
||||
"no-array-constructor": "error",
|
||||
"no-lonely-if": "error",
|
||||
"no-mixed-operators": "error",
|
||||
"no-mixed-spaces-and-tabs": "error",
|
||||
"no-plusplus": "off",
|
||||
"no-trailing-spaces": "error",
|
||||
"no-underscore-dangle": "off",
|
||||
"no-whitespace-before-property": "error",
|
||||
"object-curly-newline": [ "error", "always" ],
|
||||
"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 } ],
|
||||
"wrap-regex": "error"
|
||||
|
||||
}
|
||||
}
|
9
tasks/options/eslint.js
Normal file
9
tasks/options/eslint.js
Normal file
|
@ -0,0 +1,9 @@
|
|||
module.exports = {
|
||||
target: [
|
||||
'plugins/**/*.js',
|
||||
'src/**/*.js'
|
||||
],
|
||||
options: {
|
||||
configFile: '.eslintrc.json'
|
||||
}
|
||||
};
|
Loading…
Reference in a new issue