@jkba/eslint-config-angular 1.6.0 → 1.7.0

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/README.md CHANGED
@@ -123,7 +123,7 @@ Reference [Share Configurations](https://eslint.org/docs/latest/extend/shareable
123
123
 
124
124
  ## Release
125
125
 
126
- Use `npm version`, don't forget to push the tag and the CI will take care of the rest.
126
+ Use `npm version`, don't forget to push the tag (`git push --follow-tags`) and the CI will take care of the rest.
127
127
 
128
128
 
129
129
  ## License
package/eslint.config.js CHANGED
@@ -101,6 +101,7 @@ module.exports = {
101
101
  ],
102
102
  "@typescript-eslint/prefer-optional-chain": "error",
103
103
 
104
+ '@angular-eslint/no-input-rename': 'off', // I just simply disagree with this rule. Especially while using "transform" property.
104
105
  '@angular-eslint/sort-ngmodule-metadata-arrays': 'error',
105
106
  '@angular-eslint/prefer-on-push-component-change-detection': 'error',
106
107
  '@angular-eslint/use-component-view-encapsulation': 'warn', // For me, it is only a suggestion
@@ -182,11 +183,11 @@ module.exports = {
182
183
  ],
183
184
  '@angular-eslint/template/i18n': 'error',
184
185
  '@angular-eslint/template/no-any': 'error',
185
- '@angular-eslint/template/no-call-expression': 'error',
186
186
  '@angular-eslint/template/no-duplicate-attributes': 'error',
187
187
  '@angular-eslint/template/no-interpolation-in-attributes': 'error',
188
188
  '@angular-eslint/template/prefer-self-closing-tags': 'error',
189
- '@angular-eslint/template/use-track-by-function': 'error'
189
+ '@angular-eslint/template/use-track-by-function': 'error',
190
+ '@angular-eslint/template/prefer-control-flow': 'error'
190
191
  }
191
192
  },
192
193
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jkba/eslint-config-angular",
3
- "version": "1.6.0",
3
+ "version": "1.7.0",
4
4
  "description": "Opinionated ESLint config for Angular projects",
5
5
  "main": "index.js",
6
6
  "scripts": {