eslint-config-aether 3.2.1 → 3.2.2
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/dist/index.js +4 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -118,6 +118,7 @@ var base_default = {
|
|
|
118
118
|
"@stylistic/space-infix-ops": "warn",
|
|
119
119
|
"@stylistic/space-unary-ops": "warn",
|
|
120
120
|
"@stylistic/spaced-comment": ["warn", "always"],
|
|
121
|
+
"@stylistic/type-generic-spacing": "warn",
|
|
121
122
|
"@stylistic/wrap-iife": "warn"
|
|
122
123
|
}
|
|
123
124
|
};
|
|
@@ -212,7 +213,9 @@ var typechecked_default = {
|
|
|
212
213
|
}],
|
|
213
214
|
"@typescript-eslint/prefer-nullish-coalescing": "warn",
|
|
214
215
|
"@typescript-eslint/prefer-optional-chain": "off",
|
|
215
|
-
"@typescript-eslint/strict-boolean-expressions": "error"
|
|
216
|
+
"@typescript-eslint/strict-boolean-expressions": ["error", {
|
|
217
|
+
"allowNullableObject": false
|
|
218
|
+
}]
|
|
216
219
|
}
|
|
217
220
|
};
|
|
218
221
|
|