Mailspring/build/config/eslint.json
Ben Gotow f5ee557e2e feat(hidden-messages): Filter trash/spam messages. Fixes #1135
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
2016-03-02 10:05:17 -08:00

28 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"
}