Skip to content

Commit

Permalink
feat(eslint-plugin)!: remove deprecated no-host-metadata-property rule (
Browse files Browse the repository at this point in the history
#2113)

Co-authored-by: Daniel Kimmich <json-derulo@users.noreply.github.com>
  • Loading branch information
2 people authored and JamesHenry committed Nov 29, 2024
1 parent 89c5c3e commit 3c30aa8
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 551 deletions.
1 change: 0 additions & 1 deletion packages/angular-eslint/src/configs/ts-all.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ export default (
'@angular-eslint/no-duplicates-in-metadata-arrays': 'error',
'@angular-eslint/no-empty-lifecycle-method': 'error',
'@angular-eslint/no-forward-ref': 'error',
'@angular-eslint/no-host-metadata-property': 'error',
'@angular-eslint/no-input-prefix': 'error',
'@angular-eslint/no-input-rename': 'error',
'@angular-eslint/no-inputs-metadata-property': 'error',
Expand Down
8 changes: 0 additions & 8 deletions packages/eslint-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,4 @@ Please see https://github.com/angular-eslint/angular-eslint for full usage instr

<!-- begin deprecated rule list -->

### Deprecated

<!-- prettier-ignore-start -->
| Rule | Replaced by |
| --- | --- |
| [`no-host-metadata-property`](https://github.com/angular-eslint/angular-eslint/blob/main/packages/eslint-plugin/docs/rules/no-host-metadata-property.md) | |
<!-- prettier-ignore-end -->

<!-- end deprecated rule list -->
306 changes: 0 additions & 306 deletions packages/eslint-plugin/docs/rules/no-host-metadata-property.md

This file was deleted.

1 change: 0 additions & 1 deletion packages/eslint-plugin/src/configs/all.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
"@angular-eslint/no-duplicates-in-metadata-arrays": "error",
"@angular-eslint/no-empty-lifecycle-method": "error",
"@angular-eslint/no-forward-ref": "error",
"@angular-eslint/no-host-metadata-property": "error",
"@angular-eslint/no-input-prefix": "error",
"@angular-eslint/no-input-rename": "error",
"@angular-eslint/no-inputs-metadata-property": "error",
Expand Down
4 changes: 0 additions & 4 deletions packages/eslint-plugin/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@ import noEmptyLifecycleMethod, {
import noForwardRef, {
RULE_NAME as noForwardRefRuleName,
} from './rules/no-forward-ref';
import noHostMetadataProperty, {
RULE_NAME as noHostMetadataPropertyRuleName,
} from './rules/no-host-metadata-property';
import noInputPrefix, {
RULE_NAME as noInputPrefixRuleName,
} from './rules/no-input-prefix';
Expand Down Expand Up @@ -136,7 +133,6 @@ export = {
[noDuplicatesInMetadataArraysRuleName]: noDuplicatesInMetadataArrays,
[noEmptyLifecycleMethodRuleName]: noEmptyLifecycleMethod,
[noForwardRefRuleName]: noForwardRef,
[noHostMetadataPropertyRuleName]: noHostMetadataProperty,
[noInputPrefixRuleName]: noInputPrefix,
[noInputRenameRuleName]: noInputRename,
[noInputsMetadataPropertyRuleName]: noInputsMetadataProperty,
Expand Down
Loading

0 comments on commit 3c30aa8

Please sign in to comment.