mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-13 13:19:34 +08:00
2e3ab31952
Summary: - Linter uses predefined rules for ES6 and React from airbnb Test Plan: - Manuel Reviewers: evan, bengotow Reviewed By: bengotow Differential Revision: https://phab.nylas.com/D2242
17 lines
286 B
JSON
17 lines
286 B
JSON
{
|
|
"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]
|
|
}
|
|
}
|