You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
991 B
40 lines
991 B
{
|
|
"parser": "babel-eslint",
|
|
"extends": ["airbnb", "plugin:flowtype/recommended", "prettier", "prettier/react"],
|
|
"plugins": ["flowtype"],
|
|
"globals": {
|
|
"__ENV__": false,
|
|
"__DEV__": false,
|
|
"__PROD__": false,
|
|
"__SENTRY_URL__": false,
|
|
"__static": false,
|
|
"window": false,
|
|
},
|
|
"rules": {
|
|
"camelcase": 0,
|
|
"import/no-extraneous-dependencies": 0,
|
|
"import/prefer-default-export": 0,
|
|
"import/no-named-as-default": 0,
|
|
"jsx-a11y/anchor-is-valid": 0,
|
|
"new-cap": 0,
|
|
"no-nested-ternary": 0,
|
|
"no-param-reassign": 0,
|
|
"no-plusplus": 0,
|
|
"no-return-assign": 0,
|
|
"no-shadow": 0,
|
|
"no-underscore-dangle": 0,
|
|
"no-void": 0,
|
|
"react/forbid-prop-types": 0,
|
|
"react/jsx-curly-brace-presence": 0,
|
|
"react/jsx-filename-extension": 0,
|
|
"react/prefer-stateless-function": 0,
|
|
},
|
|
"settings": {
|
|
"import/resolver": {
|
|
"babel-module": {},
|
|
},
|
|
"flowtype": {
|
|
"onlyFilesWithFlowAnnotation": true
|
|
}
|
|
},
|
|
}
|
|
|