@bratislava/eslint-config 0.8.0 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +1 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -83,6 +83,7 @@ export const eslintRules = {
|
|
|
83
83
|
eqeqeq: ["error", "smart"],
|
|
84
84
|
"guard-for-in": "error",
|
|
85
85
|
"new-cap": ["error", { capIsNew: false }],
|
|
86
|
+
"no-await-in-loop": "error",
|
|
86
87
|
"no-caller": "error",
|
|
87
88
|
"no-div-regex": "error",
|
|
88
89
|
"no-else-return": "error",
|
|
@@ -127,8 +128,6 @@ export const disabledRules = {
|
|
|
127
128
|
"max-classes-per-file": "off",
|
|
128
129
|
"class-methods-use-this": "off",
|
|
129
130
|
"no-useless-catch": "off",
|
|
130
|
-
"no-await-in-loop": "off",
|
|
131
|
-
"@typescript-eslint/return-await": "off",
|
|
132
131
|
"@typescript-eslint/explicit-function-return-type": "off",
|
|
133
132
|
};
|
|
134
133
|
|