@will-stone/eslint-config 4.0.2 → 4.0.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@will-stone/eslint-config",
3
- "version": "4.0.2",
3
+ "version": "4.0.3",
4
4
  "private": false,
5
5
  "description": "My ESLint config",
6
6
  "repository": {
@@ -234,13 +234,8 @@ module.exports = {
234
234
  'no-shadow': 'off',
235
235
  '@typescript-eslint/no-shadow': ['error'],
236
236
 
237
- '@typescript-eslint/no-type-alias': [
238
- 'error',
239
- {
240
- allowGenerics: 'always',
241
- allowMappedTypes: 'always',
242
- },
243
- ],
237
+ // Aliasing can be useful
238
+ '@typescript-eslint/no-type-alias': 'off',
244
239
 
245
240
  // Disallows unnecessary constraints on generic types
246
241
  '@typescript-eslint/no-unnecessary-type-constraint': 'warn',