Mailspring/build/config/eslint.json

18 lines
286 B
JSON
Raw Normal View History

{
"extends": "airbnb",
"globals": {
"atom": false
},
"env": {
"browser": true,
"node": true,
"jasmine": true
},
"rules": {
"react/prop-types": [2, {"ignore": ["children"]}],
"eqeqeq": [2, "smart"],
"id-length": [0],
"no-loop-func": [0]
}
}