eslint-config-angular-strict 2.2.13 → 2.2.15

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 CHANGED
@@ -68,11 +68,7 @@ export default [
68
68
  '@typescript-eslint/member-ordering': 'error',
69
69
  '@typescript-eslint/no-explicit-any': 'off',
70
70
  '@typescript-eslint/no-extraneous-class': ['error', { allowEmpty: true, allowStaticOnly: true }],
71
- '@typescript-eslint/no-misused-promises': ['error', { checksVoidReturn: false }],
72
71
  '@typescript-eslint/no-non-null-assertion': 'off',
73
- '@typescript-eslint/only-throw-error': 'error',
74
- '@typescript-eslint/prefer-destructuring': 'error',
75
- '@typescript-eslint/prefer-optional-chain': 'error',
76
72
  '@typescript-eslint/promise-function-async': ['error', { checkArrowFunctions: false }],
77
73
  '@typescript-eslint/sort-type-constituents': 'error',
78
74
  '@typescript-eslint/unbound-method': ['error', { ignoreStatic: true }],
@@ -137,7 +133,7 @@ export default [
137
133
  'no-return-assign': 'off',
138
134
  'no-underscore-dangle': ['error', { allowAfterThis: true }],
139
135
  'radix': ['error', 'as-needed'],
140
- 'sort-keys': ['error', 'asc', { allowLineSeparatedGroups: true, natural: true }]
136
+ 'sort-keys': ['error', 'asc', { allowLineSeparatedGroups: true, natural: true }],
141
137
  },
142
138
  },
143
139
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-angular-strict",
3
- "version": "2.2.13",
3
+ "version": "2.2.15",
4
4
  "description": "Modern ESLint configuration with strict rules for Angular development.",
5
5
  "keywords": [
6
6
  "angular",
@@ -20,5 +20,6 @@ export class SampleComponent {
20
20
  let test = 0;
21
21
  test++;
22
22
  this._items = ['one', 'two', 'three'];
23
+ const { qux } = object;
23
24
  }
24
25
  }