diff options
Diffstat (limited to 'CheckUser/.eslintrc.json')
-rw-r--r-- | CheckUser/.eslintrc.json | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/CheckUser/.eslintrc.json b/CheckUser/.eslintrc.json new file mode 100644 index 00000000..c882b462 --- /dev/null +++ b/CheckUser/.eslintrc.json @@ -0,0 +1,23 @@ +{ + "extends": "wikimedia", + "env": { + "browser": true, + "jquery": true, + "qunit": true + }, + "globals": { + "mediaWiki": false + }, + "rules": { + "comma-dangle": 0, + "computed-property-spacing": 0, + "indent": 0, + "no-multi-spaces": 0, + "no-undef": 0, + "no-use-before-define": 0, + "one-var": 0, + "space-infix-ops": 0, + "vars-on-top": 0, + "wrap-iife": 0 + } +} |