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.
Files
outline/.eslintrc
Jori Lallo f08087ebd1 Fixed auth
2016-07-25 22:49:32 -07:00

23 lines
534 B
Plaintext

{
"extends": "airbnb",
"parser": "babel-eslint",
"rules": {
"arrow-body-style":[0, "as-needed"], // fix `this` shortcut on ES6 classes
"react/jsx-no-bind": 0, // Makes difficult to pass args to prop functions
"react/jsx-curly-spacing": [2, "always"], // Spaces inside curlies
"no-else-return": 0,
},
"settings" : {
"import/resolver": {
"webpack": {
"config": "webpack.config.js"
}
}
},
"globals": {
__DEV__: true,
SLACK_KEY: true,
SLACK_REDIRECT_URI: true,
},
}