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

33 lines
756 B
Plaintext
Raw Normal View History

2016-02-27 21:53:11 +00:00
{
"parser": "babel-eslint",
"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.
"prettier/prettier": ["error", {"trailingComma": "es5", "singleQuote": true}]
2016-07-01 06:21:58 +00:00
},
"settings" : {
"import/resolver": {
"webpack": {
"config": "webpack.config.js"
}
}
2016-07-26 05:49:32 +00:00
},
"env": {
"jest": true,
},
2016-07-26 05:49:32 +00:00
"globals": {
__DEV__: true,
SLACK_KEY: true,
SLACK_REDIRECT_URI: true,
DEPLOYMENT: true,
afterAll: true
2016-07-26 05:49:32 +00:00
},
2016-07-01 06:21:58 +00:00
}