Skip to content

Commit 3c30aa8

Browse files
json-deruloJamesHenry
authored andcommitted
feat(eslint-plugin)!: remove deprecated no-host-metadata-property rule (#2113)
Co-authored-by: Daniel Kimmich <json-derulo@users.noreply.github.com>
1 parent 89c5c3e commit 3c30aa8

File tree

8 files changed

+0
-551
lines changed

8 files changed

+0
-551
lines changed

packages/angular-eslint/src/configs/ts-all.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ export default (
3030
'@angular-eslint/no-duplicates-in-metadata-arrays': 'error',
3131
'@angular-eslint/no-empty-lifecycle-method': 'error',
3232
'@angular-eslint/no-forward-ref': 'error',
33-
'@angular-eslint/no-host-metadata-property': 'error',
3433
'@angular-eslint/no-input-prefix': 'error',
3534
'@angular-eslint/no-input-rename': 'error',
3635
'@angular-eslint/no-inputs-metadata-property': 'error',

packages/eslint-plugin/README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,4 @@ Please see https://github.com/angular-eslint/angular-eslint for full usage instr
8585

8686
<!-- begin deprecated rule list -->
8787

88-
### Deprecated
89-
90-
<!-- prettier-ignore-start -->
91-
| Rule | Replaced by |
92-
| --- | --- |
93-
| [`no-host-metadata-property`](https://github.com/angular-eslint/angular-eslint/blob/main/packages/eslint-plugin/docs/rules/no-host-metadata-property.md) | |
94-
<!-- prettier-ignore-end -->
95-
9688
<!-- end deprecated rule list -->

packages/eslint-plugin/docs/rules/no-host-metadata-property.md

Lines changed: 0 additions & 306 deletions
This file was deleted.

packages/eslint-plugin/src/configs/all.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
"@angular-eslint/no-duplicates-in-metadata-arrays": "error",
1717
"@angular-eslint/no-empty-lifecycle-method": "error",
1818
"@angular-eslint/no-forward-ref": "error",
19-
"@angular-eslint/no-host-metadata-property": "error",
2019
"@angular-eslint/no-input-prefix": "error",
2120
"@angular-eslint/no-input-rename": "error",
2221
"@angular-eslint/no-inputs-metadata-property": "error",

packages/eslint-plugin/src/index.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,6 @@ import noEmptyLifecycleMethod, {
4040
import noForwardRef, {
4141
RULE_NAME as noForwardRefRuleName,
4242
} from './rules/no-forward-ref';
43-
import noHostMetadataProperty, {
44-
RULE_NAME as noHostMetadataPropertyRuleName,
45-
} from './rules/no-host-metadata-property';
4643
import noInputPrefix, {
4744
RULE_NAME as noInputPrefixRuleName,
4845
} from './rules/no-input-prefix';
@@ -136,7 +133,6 @@ export = {
136133
[noDuplicatesInMetadataArraysRuleName]: noDuplicatesInMetadataArrays,
137134
[noEmptyLifecycleMethodRuleName]: noEmptyLifecycleMethod,
138135
[noForwardRefRuleName]: noForwardRef,
139-
[noHostMetadataPropertyRuleName]: noHostMetadataProperty,
140136
[noInputPrefixRuleName]: noInputPrefix,
141137
[noInputRenameRuleName]: noInputRename,
142138
[noInputsMetadataPropertyRuleName]: noInputsMetadataProperty,

0 commit comments

Comments
 (0)