1 | {
|
2 | "parser": "@babel/eslint-parser",
|
3 | "env": {
|
4 | "es6": true
|
5 | },
|
6 | "plugins": ["flowtype", "fb-flow"],
|
7 | "extends": [
|
8 | "plugin:flowtype/recommended",
|
9 | "plugin:prettier/recommended"
|
10 | ],
|
11 | "globals": {},
|
12 | "rules": {
|
13 | "eqeqeq": ["error", "smart"],
|
14 | "semi": "error",
|
15 | "no-unused-vars": [
|
16 | "error",
|
17 | {
|
18 | "varsIgnorePattern": "^_.?.?$",
|
19 | "argsIgnorePattern": "^_.*$"
|
20 | }
|
21 | ],
|
22 | "fb-flow/use-indexed-access-type": "warn"
|
23 | }
|
24 | }
|