reprehenderitiure
Version:
Create actions that return promises, which are resolved or rejected by a redux saga
53 lines (52 loc) • 1.02 kB
JSON
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"airbnb-base",
"airbnb-typescript/base"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module",
"project": "./tsconfig.json"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"quotes": [
2,
"double"
],
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"error"
],
"import/prefer-default-export": "off",
"@typescript-eslint/lines-between-class-members": [
"error",
"always",
{
"exceptAfterSingleLine": true
}
],
"no-constant-condition": "off",
"no-plusplus": "off",
"no-await-in-loop": "off",
"@typescript-eslint/return-await": "off",
"@typescript-eslint/quotes": [
2,
"double"
],
"import/first": "off",
"max-len": "off",
"prefer-spread": "off",
"implicit-arrow-linebreak": [
"error",
"beside"
]
}
}