Skip to content

Commit

Permalink
fix doc error
Browse files Browse the repository at this point in the history
  • Loading branch information
adashrod committed Mar 11, 2023
1 parent c3082c6 commit 62ac7da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/rules/strict-camel-case.js
Original file line number Diff line number Diff line change
Expand Up @@ -543,9 +543,9 @@ module.exports = {
"MethodDefinition > Identifier.key": checkClassFieldsMethodsAndObjectFieldsMethods,
// ---TS-only: class instance props---
"PropertyDefinition > Identifier.key": checkClassFieldsMethodsAndObjectFieldsMethods,
// class { #privPropName = ...; }
"MethodDefinition > PrivateIdentifier.key": checkClassFieldsMethodsAndObjectFieldsMethods,
// class { #privFunc() {...} }
"MethodDefinition > PrivateIdentifier.key": checkClassFieldsMethodsAndObjectFieldsMethods,
// class { #privPropName = ...; }
"PropertyDefinition > PrivateIdentifier.key": checkClassFieldsMethodsAndObjectFieldsMethods,
// ---class props `this.xyz = ...`, `window.abc = ...`---
"MemberExpression > Identifier.property": checkClassFieldsMethodsAndObjectFieldsMethods,
Expand Down

0 comments on commit 62ac7da

Please sign in to comment.