eslint-config-angular-strict 2.2.6 → 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 +0 -2
- package/package.json +1 -1
- package/tests/sample.component.ts +2 -0
package/index.js
CHANGED
|
@@ -133,10 +133,8 @@ 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
|
-
'no-restricted-globals': 'off',
|
|
140
138
|
'no-return-assign': 'off',
|
|
141
139
|
'no-underscore-dangle': ['error', { allowAfterThis: true }],
|
|
142
140
|
'radix': ['error', 'as-needed'],
|
package/package.json
CHANGED