eslint-config-tamia 9.6.2 → 9.6.3
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.mjs +0 -3
package/package.json
CHANGED
package/rules/typescript.mjs
CHANGED
|
@@ -134,9 +134,6 @@ export default [
|
|
|
134
134
|
// Enforce using the nullish coalescing operator instead of logical
|
|
135
135
|
// assignments or chaining
|
|
136
136
|
'@typescript-eslint/prefer-nullish-coalescing': 'error',
|
|
137
|
-
// Require function parameters to be typed as readonly to prevent accidental
|
|
138
|
-
// mutation of inputs
|
|
139
|
-
'@typescript-eslint/prefer-readonly-parameter-types': 'error',
|
|
140
137
|
// Enforce using type parameter when calling `Array.reduce()` instead of
|
|
141
138
|
// using a type assertion
|
|
142
139
|
'@typescript-eslint/prefer-reduce-type-parameter': 'error',
|