UNPKG

614 BJavaScriptView Raw
1module.exports = {
2 rules: {
3 // specify the maximum depth that blocks can be nested
4 'max-depth': 0,
5 // limits the number of parameters that can be used in the function declaration.
6 'max-params': 0,
7 // specify the maximum number of statement allowed in a function
8 'max-statements': 0,
9 // disallow use of bitwise operators
10 'no-bitwise': 0,
11 // disallow use of unary operators, ++ and --
12 'no-plusplus': 0,
13 "valid-jsdoc": 2,
14 "no-else-return": 0,
15 "no-extend-native": 0,
16 "no-console": 0,
17 "quotes": [2, "backtick"],
18 "jsx-quotes": 2,
19 "new-cap": 0,
20 }
21}