mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-22 23:23:54 +08:00
Summary: - Make sure user can log in using exchange - Adds some test helpers for the test - Updates eslint.json and cleans up lint errors Test Plan: - Integration Tests Reviewers: evan, bengotow Reviewed By: bengotow Differential Revision: https://phab.nylas.com/D2346
19 lines
348 B
JSON
19 lines
348 B
JSON
{
|
|
"extends": "airbnb",
|
|
"globals": {
|
|
"NylasEnv": false,
|
|
"$n": 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],
|
|
"new-cap": [2, {"capIsNew": false}]
|
|
}
|
|
}
|