Skip to content

feat(eslint-plugin)!: remove deprecated no-host-metadata-property rule #2121

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/MIGRATING_FROM_TSLINT.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ If you see a rule below that has **no status** against it, then please feel free
| [`directive-class-suffix`] | @angular-eslint/directive-class-suffix | :white_check_mark: |
| [`directive-selector`] | @angular-eslint/directive-selector | :white_check_mark: |
| [`import-destructuring-spacing`] | N/A, see explanation above | :no_good: |
| [`no-host-metadata-property`] | @angular-eslint/no-host-metadata-property | :white_check_mark: |
| [`no-host-metadata-property`] | N/A, see explanation above | :no_good: |
| [`no-inputs-metadata-property`] | @angular-eslint/no-inputs-metadata-property | :white_check_mark: |
| [`no-outputs-metadata-property`] | @angular-eslint/no-outputs-metadata-property | :white_check_mark: |
| [`no-queries-metadata-property`] | @angular-eslint/no-queries-metadata-property | :white_check_mark: |
Expand Down
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
1 change: 0 additions & 1 deletion packages/eslint-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ Please see https://github.com/angular-eslint/angular-eslint for full usage instr
<!-- 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) | |
| [`sort-ngmodule-metadata-arrays`](https://github.com/angular-eslint/angular-eslint/blob/main/packages/eslint-plugin/docs/rules/sort-ngmodule-metadata-arrays.md) | |
<!-- prettier-ignore-end -->

Expand Down
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 @@ -139,7 +136,6 @@ export = {
[noDuplicatesInMetadataArraysRuleName]: noDuplicatesInMetadataArrays,
[noEmptyLifecycleMethodRuleName]: noEmptyLifecycleMethod,
[noForwardRefRuleName]: noForwardRef,
[noHostMetadataPropertyRuleName]: noHostMetadataProperty,
[noInputPrefixRuleName]: noInputPrefix,
[noInputRenameRuleName]: noInputRename,
[noInputsMetadataPropertyRuleName]: noInputsMetadataProperty,
Expand Down
Loading