File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -422,6 +422,15 @@ export interface ESLintRules extends Linter.RulesRecord {
422422 [
423423 Partial < {
424424 exceptMethods : string [ ] ;
425+ /**
426+ * @default true
427+ */
428+ enforceForClassFields : boolean ;
429+ /**
430+ * @default false
431+ */
432+ ignoreOverrideMethods : boolean ;
433+ ignoreClassesWithImplements : "all" | "public-fields" ;
425434 } > ,
426435 ]
427436 > ;
@@ -2350,6 +2359,10 @@ export interface ESLintRules extends Linter.RulesRecord {
23502359 | "constructors"
23512360 | "asyncFunctions"
23522361 | "asyncMethods"
2362+ | "privateConstructors"
2363+ | "protectedConstructors"
2364+ | "decoratedFunctions"
2365+ | "overrideMethods"
23532366 > ;
23542367 } > ,
23552368 ]
@@ -3430,6 +3443,7 @@ export interface ESLintRules extends Linter.RulesRecord {
34303443 }
34313444 | {
34323445 property : string ;
3446+ allowObjects ?: string [ ] ;
34333447 message ?: string | undefined ;
34343448 }
34353449 > ,
You can’t perform that action at this time.
0 commit comments