Mailspring/build/config/eslint.json
Juan Tejada 76bda1dbe4 feat(snooze/send-later): Add snooze and send later plugins
Summary:
- Add initial version of snooze and send later plugins
- Tests are missing since this will probably heavily change before we are done with them

Test Plan: - TODO

Reviewers: drew, bengotow, evan

Reviewed By: bengotow, evan

Differential Revision: https://phab.nylas.com/D2578
2016-02-18 10:06:21 -08:00

27 lines
522 B
JSON

{
"extends": "airbnb",
"globals": {
"NylasEnv": false,
"$n": false
},
"env": {
"browser": true,
"node": true,
"jasmine": true
},
"rules": {
"react/prop-types": [2, {"ignore": ["children"]}],
"react/no-multi-comp": [1],
"eqeqeq": [2, "smart"],
"id-length": [0],
"object-curly-spacing": [0],
"no-console": [0],
"no-loop-func": [0],
"new-cap": [2, {"capIsNew": false}],
"no-shadow": [1],
"quotes": [0],
"semi": [0]
},
"parser": "babel-eslint"
}