summaryrefslogtreecommitdiff
path: root/.eslintrc.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2019-01-28 17:57:38 +0100
committerJules Laplace <julescarbon@gmail.com>2019-01-28 17:57:38 +0100
commitc6da699f18426079435ad4664e7c715386ff82c0 (patch)
treecea63afb3c4e8e56fc2cc8f773f12e5618683cea /.eslintrc.js
parent0c0c2ec2ecfd64b16ff6ca0e69142223615f0c36 (diff)
display a random face
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,