|
14 | 14 | "plugins": [
|
15 | 15 | "flowtype"
|
16 | 16 | ],
|
| 17 | + |
17 | 18 | "parserOptions": {
|
18 | 19 | "sourceType": "module",
|
19 | 20 | "ecmaFeatures": {
|
20 | 21 | "experimentalObjectRestSpread": true
|
21 | 22 | }
|
22 | 23 | },
|
23 | 24 |
|
| 25 | + "settings": { |
| 26 | + "flowtype": { |
| 27 | + "onlyFilesWithFlowAnnotation": false |
| 28 | + } |
| 29 | + }, |
| 30 | + |
| 31 | + |
24 | 32 | "rules": {
|
| 33 | + ////////// Flow ////////// |
| 34 | + |
| 35 | + "flowtype/boolean-style": [ |
| 36 | + 1, |
| 37 | + "boolean" |
| 38 | + ], |
| 39 | + "flowtype/define-flow-type": 0, |
| 40 | + "flowtype/delimiter-dangle": [ |
| 41 | + 1, |
| 42 | + "never" |
| 43 | + ], |
| 44 | + "flowtype/generic-spacing": [ |
| 45 | + 1, |
| 46 | + "never" |
| 47 | + ], |
| 48 | + "flowtype/no-primitive-constructor-types": 2, |
| 49 | + "flowtype/no-types-missing-file-annotation": 2, |
| 50 | + "flowtype/no-weak-types": [2, { |
| 51 | + "any": false, |
| 52 | + "Function": true, |
| 53 | + "Object": true |
| 54 | + }], |
| 55 | + "flowtype/object-type-delimiter": [ |
| 56 | + 2, |
| 57 | + "comma" |
| 58 | + ], |
| 59 | + "flowtype/require-parameter-type": 0, |
| 60 | + "flowtype/require-return-type": [ |
| 61 | + 0, |
| 62 | + "always", |
| 63 | + { |
| 64 | + "annotateUndefined": "never" |
| 65 | + } |
| 66 | + ], |
| 67 | + "flowtype/require-valid-file-annotation": 0, |
| 68 | + "flowtype/semi": [ |
| 69 | + 2, |
| 70 | + "always" |
| 71 | + ], |
| 72 | + "flowtype/space-after-type-colon": [ |
| 73 | + 2, |
| 74 | + "always" |
| 75 | + ], |
| 76 | + "flowtype/space-before-generic-bracket": [ |
| 77 | + 0, |
| 78 | + "never" |
| 79 | + ], |
| 80 | + "flowtype/space-before-type-colon": [ |
| 81 | + 0, |
| 82 | + "never" |
| 83 | + ], |
| 84 | + "flowtype/type-id-match": [ |
| 85 | + 0, |
| 86 | + "^([A-Z][a-z0-9]+)+Type$" |
| 87 | + ], |
| 88 | + "flowtype/union-intersection-spacing": [ |
| 89 | + 1, |
| 90 | + "always" |
| 91 | + ], |
| 92 | + "flowtype/use-flow-type": 0, |
| 93 | + "flowtype/valid-syntax": 0, |
| 94 | + |
25 | 95 | ////////// Possible Errors //////////
|
26 | 96 |
|
27 |
| - "no-comma-dangle": 0, // disallow trailing commas in object literals |
| 97 | + "comma-dangle": 1, // disallow trailing commas in object literals |
28 | 98 | "no-cond-assign": 0, // disallow assignment in conditional expressions
|
29 | 99 | "no-console": 1, // disallow use of console (off by default in the node environment)
|
30 | 100 | "no-constant-condition": 0, // disallow use of constant expressions in conditions
|
|
39 | 109 | "no-extra-semi": 0, // disallow unnecessary semicolons
|
40 | 110 | "no-func-assign": 0, // disallow overwriting functions written as function declarations
|
41 | 111 | "no-inner-declarations": 0, // disallow function or variable declarations in nested blocks
|
42 |
| - "no-invalid-regexp": 0, // disallow invalid regular expression strings in the RegExp constructor |
| 112 | + "no-invalid-regexp": 1, // disallow invalid regular expression strings in the RegExp constructor |
43 | 113 | "no-irregular-whitespace": 0, // disallow irregular whitespace outside of strings and comments
|
44 | 114 | "no-negated-in-lhs": 0, // disallow negation of the left operand of an in expression
|
45 | 115 | "no-obj-calls": 0, // disallow the use of object properties of the global object (Math and JSON) as functions
|
|
57 | 127 | "block-scoped-var": 0, // treat var statements as if they were block scoped (off by default)
|
58 | 128 | "complexity": 0, // specify the maximum cyclomatic complexity allowed in a program (off by default)
|
59 | 129 | "consistent-return": 0, // require return statements to either always or never specify values
|
60 |
| - "curly": 0, // specify curly brace conventions for all control statements |
| 130 | + "curly": 1, // specify curly brace conventions for all control statements |
61 | 131 | "default-case": 0, // require default case in switch statements (off by default)
|
62 | 132 | "dot-notation": 0, // encourages use of dot notation whenever possible
|
63 | 133 | "eqeqeq": 0, // require the use of === and !==
|
64 | 134 | "guard-for-in": 0, // make sure for-in loops have an if statement (off by default)
|
65 | 135 | "no-alert": 0, // disallow the use of alert, confirm, and prompt
|
66 | 136 | "no-caller": 0, // disallow use of arguments.caller or arguments.callee
|
67 | 137 | "no-div-regex": 0, // disallow division operators explicitly at beginning of regular expression (off by default)
|
68 |
| - "no-else-return": 0, // disallow else after a return in an if (off by default) |
| 138 | + "no-else-return": 1, // disallow else after a return in an if (off by default) |
69 | 139 | "no-empty-label": 0, // disallow use of labels for anything other then loops and switches
|
70 | 140 | "no-eq-null": 0, // disallow comparisons to null without a type-checking operator (off by default)
|
71 |
| - "no-eval": 0, // disallow use of eval() |
| 141 | + "no-eval": 2, // disallow use of eval() |
72 | 142 | "no-extend-native": 0, // disallow adding to native types
|
73 | 143 | "no-extra-bind": 0, // disallow unnecessary function binding
|
74 | 144 | "no-fallthrough": 0, // disallow fallthrough of case statements
|
|
96 | 166 | "no-unused-expressions": 1, // disallow usage of expressions in statement position
|
97 | 167 | "no-void": 0, // disallow use of void operator (off by default)
|
98 | 168 | "no-warning-comments": 0, // disallow usage of configurable warning terms in comments, e.g. TODO or FIXME (off by default)
|
99 |
| - "no-with": 0, // disallow use of the with statement |
| 169 | + "no-with": 2, // disallow use of the with statement |
100 | 170 | "radix": 0, // require use of the second argument for parseInt() (off by default)
|
101 | 171 | "vars-on-top": 0, // requires to declare all vars on top of their containing scope (off by default)
|
102 | 172 | "wrap-iife": 0, // require immediate function invocation to be wrapped in parentheses (off by default)
|
|
119 | 189 | "no-shadow-restricted-names": 0, // disallow shadowing of names such as arguments
|
120 | 190 | "no-undef": 1, // disallow use of undeclared variables unless mentioned in a /*global */ block
|
121 | 191 | "no-undef-init": 0, // disallow use of undefined when initializing variables
|
122 |
| - "no-undefined": 0, // disallow use of undefined variable (off by default) |
| 192 | + "no-undefined": 2, // disallow use of undefined variable (off by default) |
123 | 193 | "no-unused-vars": 1, // disallow declaration of variables that are not used in the code
|
124 | 194 | "no-use-before-define": 1, // disallow use of variables before they are defined
|
125 | 195 |
|
|
137 | 207 |
|
138 | 208 | ////////// Stylistic Issues //////////
|
139 | 209 |
|
140 |
| - "brace-style": 0, // enforce one true brace style (off by default) |
| 210 | + "brace-style": 1, // enforce one true brace style (off by default) |
141 | 211 | "camelcase": 1, // require camel case names
|
142 | 212 | "comma-spacing": 0, // enforce spacing before and after comma
|
143 | 213 | "comma-style": 1, // enforce one true comma style (off by default)
|
|
151 | 221 | "new-parens": 1, // disallow the omission of parentheses when invoking a constructor with no arguments
|
152 | 222 | "no-array-constructor": 1, // disallow use of the Array constructor
|
153 | 223 | "no-inline-comments": 1, // disallow comments inline after code (off by default)
|
154 |
| - "no-lonely-if": 0, // disallow if as the only statement in an else block (off by default) |
155 |
| - "no-mixed-spaces-and-tabs": 0, // disallow mixed spaces and tabs for indentation |
| 224 | + "no-lonely-if": 1, // disallow if as the only statement in an else block (off by default) |
| 225 | + "no-mixed-spaces-and-tabs": 2, // disallow mixed spaces and tabs for indentation |
156 | 226 | "no-multiple-empty-lines": 0, // disallow multiple empty lines (off by default)
|
157 |
| - "no-nested-ternary": 0, // disallow nested ternary expressions (off by default) |
| 227 | + "no-nested-ternary": 1, // disallow nested ternary expressions (off by default) |
158 | 228 | "no-new-object": 0, // disallow use of the Object constructor
|
159 | 229 | "no-space-before-semi": 0, // disallow space before semicolon
|
160 | 230 | "no-spaced-func": 0, // disallow space between function identifier and application
|
|
183 | 253 |
|
184 | 254 | ////////// ECMAScript 6 //////////
|
185 | 255 |
|
186 |
| - "no-var": 0, // require let or const instead of var (off by default) |
| 256 | + "no-var": 1, // require let or const instead of var (off by default) |
187 | 257 | "generator-star": 0, // enforce the position of the * in generator functions (off by default)
|
188 | 258 |
|
189 | 259 |
|
|
0 commit comments