@viclafouch/eslint-config-viclafouch 4.12.0 → 4.13.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/package.json +1 -1
- package/rules/typescript.js +0 -4
package/package.json
CHANGED
package/rules/typescript.js
CHANGED
|
@@ -132,10 +132,6 @@ module.exports = {
|
|
|
132
132
|
// https://typescript-eslint.io/rules/prefer-reduce-type-parameter
|
|
133
133
|
'@typescript-eslint/prefer-reduce-type-parameter': 'error',
|
|
134
134
|
|
|
135
|
-
// Require Promise-like statements to be handled appropriately.
|
|
136
|
-
// https://typescript-eslint.io/rules/no-floating-promises
|
|
137
|
-
'@typescript-eslint/no-floating-promises': 'error',
|
|
138
|
-
|
|
139
135
|
// Prefer using nullish coalescing (??) over logical (||) when possible.
|
|
140
136
|
'@typescript-eslint/prefer-nullish-coalescing': 'error'
|
|
141
137
|
|