Skip to content

Commit 4d9580c

Browse files
committed
feat!: no-unused-private-class-members
1 parent daeabaf commit 4d9580c

File tree

3 files changed

+2
-1
lines changed

3 files changed

+2
-1
lines changed

src/plugin-usage/eslint.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ const usage: PluginUsage = {
135135
'no-unreachable-loop': ['error'],
136136
'no-unsafe-finally': ['error'],
137137
'no-unsafe-negation': ['error'],
138+
'no-unused-private-class-members': ['error'],
138139
'no-useless-backreference': ['error'],
139140
'no-useless-call': ['error'],
140141
'no-useless-catch': ['error'],

src/test/_rules_to_consider.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
export const rulesToConsider: Record<string, string[]> = {
22
'eslint-comments': [],
33
'': [
4-
'no-unused-private-class-members',
54
'no-useless-assignment',
65
'no-useless-concat',
76
'operator-assignment',

src/test/expected-exported-value/_eslint.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ export const expectedEslintRules: Record<
135135
'no-unreachable-loop': ['error'],
136136
'no-unsafe-finally': ['error'],
137137
'no-unsafe-negation': ['error'],
138+
'no-unused-private-class-members': ['error'],
138139
'no-useless-backreference': ['error'],
139140
'no-useless-call': ['error'],
140141
'no-useless-catch': ['error'],

0 commit comments

Comments
 (0)