eslint-config-angular-strict 2.2.7 → 2.2.8

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
@@ -133,7 +133,6 @@ export default [
133
133
 
134
134
  // General rules
135
135
  'class-methods-use-this': ['error', { exceptMethods: ['beforeUnloadHander', 'trackBy', 'transform', 'windowRef'] }],
136
- 'max-lines': ['error', 500],
137
136
  'no-param-reassign': ['error', { props: false }],
138
137
  'no-plusplus': 'off',
139
138
  'no-return-assign': 'off',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-angular-strict",
3
- "version": "2.2.07",
3
+ "version": "2.2.08",
4
4
  "description": "Modern ESLint configuration with strict rules for Angular development.",
5
5
  "keywords": [
6
6
  "angular",
@@ -17,6 +17,8 @@ export class SampleComponent {
17
17
  }
18
18
 
19
19
  private _test() {
20
+ let test = 0;
21
+ test++;
20
22
  this._items = ['one', 'two', 'three'];
21
23
  }
22
24
  }