Skip to content

Commit

Permalink
fix: grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
Zamiell committed Jul 27, 2023
1 parent 3c1f251 commit 87789e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/rules/constructor-super.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,4 @@ class A extends B {

If you don't want to be notified about invalid/missing `super()` callings in constructors, you can safely disable this rule.

It's also safe to disable this rule when using TypeScript because [TypeScript's compiler enforces this check (`ts(2377)`)](https://github.com/Microsoft/TypeScript/blob/main/src/compiler/diagnosticMessages.json).
It is safe to disable this rule when using TypeScript because [TypeScript's compiler enforces this check (`ts(2377)`)](https://github.com/Microsoft/TypeScript/blob/main/src/compiler/diagnosticMessages.json).
2 changes: 1 addition & 1 deletion docs/src/rules/no-dupe-class-members.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,4 @@ This rule should not be used in ES3/5 environments.

In ES2015 (ES6) or later, if you don't want to be notified about duplicate names in class members, you can safely disable this rule.

It's also safe to disable this rule when using TypeScript because [TypeScript's compiler enforces this check (`ts(2393)`)](https://github.com/Microsoft/TypeScript/blob/main/src/compiler/diagnosticMessages.json).
It is safe to disable this rule when using TypeScript because [TypeScript's compiler enforces this check (`ts(2393)`)](https://github.com/Microsoft/TypeScript/blob/main/src/compiler/diagnosticMessages.json).

0 comments on commit 87789e4

Please sign in to comment.