diff options
Diffstat (limited to 'ogcp/static/AdminLTE/dist/js/.eslintrc.json')
-rw-r--r-- | ogcp/static/AdminLTE/dist/js/.eslintrc.json | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/ogcp/static/AdminLTE/dist/js/.eslintrc.json b/ogcp/static/AdminLTE/dist/js/.eslintrc.json new file mode 100644 index 0000000..c6b4b3f --- /dev/null +++ b/ogcp/static/AdminLTE/dist/js/.eslintrc.json @@ -0,0 +1,48 @@ +{ + "root": true, + "parserOptions": { + "ecmaVersion": 5, + "sourceType": "script" + }, + "env": { + "jquery": true + }, + "extends": [ + "plugin:unicorn/recommended", + "xo", + "xo/browser" + ], + "rules": { + "capitalized-comments": "off", + "indent": [ + "error", + 2, + { + "MemberExpression": "off", + "SwitchCase": 1 + } + ], + "multiline-ternary": [ + "error", + "always-multiline" + ], + "object-curly-spacing": [ + "error", + "always" + ], + "semi": [ + "error", + "never" + ], + "strict": "error", + "unicorn/no-array-for-each": "off", + "unicorn/no-for-loop": "off", + "unicorn/no-null": "off", + "unicorn/prefer-dataset": "off", + "unicorn/prefer-includes": "off", + "unicorn/prefer-node-append": "off", + "unicorn/prefer-query-selector": "off", + "unicorn/prefer-spread": "off", + "unicorn/prevent-abbreviations": "off" + } +} |