This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/.eslintrc

105 lines
2.0 KiB
Plaintext
Raw Permalink Normal View History

2016-02-27 21:53:11 +00:00
{
"parser": "babel-eslint",
2017-05-04 05:49:08 +00:00
"extends": [
"react-app",
"plugin:import/errors",
2017-05-12 00:23:56 +00:00
"plugin:import/warnings",
"plugin:flowtype/recommended",
"plugin:react-hooks/recommended"
2017-05-04 05:49:08 +00:00
],
"plugins": [
"prettier",
"flowtype"
],
2016-02-27 21:53:11 +00:00
"rules": {
2017-07-02 00:19:45 +00:00
"eqeqeq": 2,
"no-unused-vars": 2,
"no-mixed-operators": "off",
"import/order": [
"error",
{
"alphabetize": {
"order": "asc"
},
"pathGroups": [
{
"pattern": "shared/**",
"group": "external",
"position": "after"
},
{
"pattern": "stores",
"group": "external",
"position": "after"
},
{
"pattern": "stores/**",
"group": "external",
"position": "after"
},
{
"pattern": "models/**",
"group": "external",
"position": "after"
},
{
"pattern": "scenes/**",
"group": "external",
"position": "after"
},
{
"pattern": "components/**",
"group": "external",
"position": "after"
}
]
}
],
2017-05-12 00:23:56 +00:00
"flowtype/require-valid-file-annotation": [
2,
"always",
{
"annotationStyle": "line"
}
],
"flowtype/space-after-type-colon": [
2,
"always"
],
"flowtype/space-before-type-colon": [
2,
"never"
],
2017-05-04 05:49:08 +00:00
"prettier/prettier": [
"error",
{
"printWidth": 80,
"trailingComma": "es5"
2016-07-01 06:21:58 +00:00
}
2017-05-04 05:49:08 +00:00
]
},
"settings": {
"react": {
"createClass": "createReactClass",
"pragma": "React",
"version": "detect"
},
2018-01-04 05:35:13 +00:00
"import/resolver": {
"node": {
"paths": [
"app",
"."
]
2018-01-04 05:35:13 +00:00
}
},
2017-05-12 00:23:56 +00:00
"flowtype": {
"onlyFilesWithFlowAnnotation": false
}
2016-07-26 05:49:32 +00:00
},
"env": {
2017-05-04 05:49:08 +00:00
"jest": true
},
"globals": {
"EDITOR_VERSION": true
2017-05-04 05:49:08 +00:00
}
}