Can the eslint rule 'no-promise-executor-return' be disabled?
my .eslintrc file
{
"env": {
"es6": true,
"node": true
},
"extends": [
"airbnb-base"
],
"globals": {
"describe": true,
"it": true,
"expect": true,
"beforeEach": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"project": "./tsconfig.json",
"tsconfigRootDir": "./"
},
"plugins": [
"@typescript-eslint",
"import"
],
"rules"": {
...
"import/no-promise-executor-return": "off",
...
},
"settings": {
...
}
}