summaryrefslogtreecommitdiff
path: root/.eslintrc.js
diff options
context:
space:
mode:
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index 1d5aed90..dcf8aa76 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -23,6 +23,7 @@ module.exports = {
"semi": ["error", "never"],
"prefer-const": "off",
"no-plusplus": "off",
+ "no-bitwise": "off",
"no-param-reassign": 0,
"no-return-assign": 0,
"global-require": 0,
@@ -31,6 +32,7 @@ module.exports = {
"no-nested-ternary": 0,
"no-mixed-operators": 0,
"no-confusing-arrow": 0,
+ "no-use-before-define": ["error", "nofunc"],
"prefer-arrow-callback": 0,
"prefer-arrow-callback": 0,
"func-names": 0,
@@ -38,6 +40,7 @@ module.exports = {
"class-methods-use-this": 0,
"quotes": "off",
"no-console": "off",
+ "operator-linebreak": "off",
},
"env": {
"browser": true,