mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-22 15:15:12 +08:00
Summary: By default, the messages in a thread are now filtered to exclude ones moved to trash or spam. You can choose to view those messages by clicking the new bar in the message list. When you view your spam or trash, we only show the messages on those threads that have been marked as spam/trash. Test Plan: Run a couple new tests Reviewers: juan, evan Reviewed By: evan Differential Revision: https://phab.nylas.com/D2662
27 lines
556 B
JSON
27 lines
556 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],
|
|
"no-constant-condition": [0],
|
|
"new-cap": [2, {"capIsNew": false}],
|
|
"no-shadow": [1],
|
|
"quotes": [0],
|
|
"semi": [0]
|
|
},
|
|
"parser": "babel-eslint"
|
|
}
|