2018-03-08 11:32:07 +00:00
|
|
|
{
|
2018-03-08 16:26:18 +00:00
|
|
|
"extends": [
|
|
|
|
"airbnb",
|
|
|
|
"plugin:flowtype/recommended"
|
|
|
|
],
|
2018-03-08 11:32:07 +00:00
|
|
|
"parser": "babel-eslint",
|
2018-03-08 16:26:18 +00:00
|
|
|
"plugins": ["jest", "flowtype"],
|
2018-03-08 11:32:07 +00:00
|
|
|
"rules": {
|
|
|
|
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
|
|
|
|
"react/forbid-prop-types": [1, { "forbid": ["object", "any"] }],
|
|
|
|
"class-methods-use-this": 0,
|
|
|
|
"semi": ["error", "never"],
|
|
|
|
"max-len": [
|
|
|
|
"error",
|
|
|
|
120,
|
|
|
|
2,
|
|
|
|
{
|
|
|
|
"ignoreUrls": true,
|
|
|
|
"ignoreComments": false,
|
|
|
|
"ignoreRegExpLiterals": true,
|
|
|
|
"ignoreStrings": true,
|
|
|
|
"ignoreTemplateLiterals": true
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"import/no-unresolved": 0,
|
|
|
|
"import/no-extraneous-dependencies": 0,
|
|
|
|
"import/extensions": 0,
|
|
|
|
"import/prefer-default-export": 0,
|
|
|
|
"jsx-a11y/label-has-for": 0,
|
|
|
|
"indent": ["error", 2],
|
2018-03-08 16:26:18 +00:00
|
|
|
"no-console": ["error", { "allow": ["warn", "error"] }],
|
|
|
|
"flowtype/boolean-style": [
|
|
|
|
2,
|
|
|
|
"boolean"
|
|
|
|
],
|
|
|
|
"flowtype/define-flow-type": 1,
|
|
|
|
"flowtype/delimiter-dangle": [
|
|
|
|
2,
|
|
|
|
"never"
|
|
|
|
],
|
|
|
|
"flowtype/generic-spacing": [
|
|
|
|
2,
|
|
|
|
"never"
|
|
|
|
],
|
|
|
|
"flowtype/no-primitive-constructor-types": 2,
|
|
|
|
"flowtype/no-types-missing-file-annotation": 2,
|
|
|
|
"flowtype/no-weak-types": 2,
|
|
|
|
"flowtype/object-type-delimiter": [
|
|
|
|
2,
|
|
|
|
"comma"
|
|
|
|
],
|
|
|
|
"flowtype/require-parameter-type": 2,
|
|
|
|
"flowtype/require-return-type": [
|
|
|
|
2,
|
|
|
|
"always",
|
|
|
|
{
|
|
|
|
"annotateUndefined": "never"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"flowtype/require-valid-file-annotation": 2,
|
|
|
|
"flowtype/semi": [
|
|
|
|
2,
|
|
|
|
"always"
|
|
|
|
],
|
|
|
|
"flowtype/space-after-type-colon": [
|
|
|
|
2,
|
|
|
|
"always"
|
|
|
|
],
|
|
|
|
"flowtype/space-before-generic-bracket": [
|
|
|
|
2,
|
|
|
|
"never"
|
|
|
|
],
|
|
|
|
"flowtype/space-before-type-colon": [
|
|
|
|
2,
|
|
|
|
"never"
|
|
|
|
],
|
|
|
|
"flowtype/type-id-match": [
|
|
|
|
2,
|
|
|
|
"^([A-Z][a-z0-9]+)+Type$"
|
|
|
|
],
|
|
|
|
"flowtype/union-intersection-spacing": [
|
|
|
|
2,
|
|
|
|
"always"
|
|
|
|
],
|
|
|
|
"flowtype/use-flow-type": 1,
|
|
|
|
"flowtype/valid-syntax": 1
|
|
|
|
},
|
|
|
|
"settings": {
|
|
|
|
"flowtype": {
|
|
|
|
"onlyFilesWithFlowAnnotation": false
|
|
|
|
}
|
2018-03-08 11:32:07 +00:00
|
|
|
},
|
|
|
|
"env": {
|
|
|
|
"jest/globals": true,
|
|
|
|
"browser": true
|
|
|
|
}
|
|
|
|
}
|