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

38 lines
756 B
Plaintext
Raw 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",
"plugin:import/warnings"
],
"plugins": [
"prettier"
],
2016-02-27 21:53:11 +00:00
"rules": {
"import/order": "warn",
// Prettier automatically uses the least amount of parens possible, so this
// does more harm than good.
"no-mixed-operators": "off",
// Enforce that code is formatted with prettier.
2017-05-04 05:49:08 +00:00
"prettier/prettier": [
"error",
{
"trailingComma": "es5",
"singleQuote": true
2016-07-01 06:21:58 +00:00
}
2017-05-04 05:49:08 +00:00
]
},
"settings": {
"import/resolver": "webpack"
2016-07-26 05:49:32 +00:00
},
"env": {
2017-05-04 05:49:08 +00:00
"jest": true
},
2016-07-26 05:49:32 +00:00
"globals": {
2017-05-04 05:49:08 +00:00
"__DEV__": true,
"SLACK_KEY": true,
"SLACK_REDIRECT_URI": true,
"DEPLOYMENT": true,
"afterAll": true
}
}