mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-13 21:24:58 +08:00
26 lines
522 B
JSON
26 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": [0],
|
|
"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"
|
|
}
|