Skip to content

Commit

Permalink
Fixing rule for the property selector
Browse files Browse the repository at this point in the history
  • Loading branch information
SinesioMM committed Oct 17, 2023
1 parent 54646ed commit ba1a840
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
7 changes: 3 additions & 4 deletions packages/eslint-config-typescript-react/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,11 @@ module.exports = {
},
{
selector: 'property',
format: ['strictCamelCase'],
leadingUnderscore: 'allow',
format: [],
filter: {
regex: '^--',
match: false
}
match: true,
},
},
],
},
Expand Down
7 changes: 3 additions & 4 deletions packages/eslint-config-typescript/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,11 @@ module.exports = {
},
{
selector: 'property',
format: ['strictCamelCase'],
leadingUnderscore: 'allow',
format: [],
filter: {
regex: '^--',
match: false
}
match: true,
},
},
],
'@typescript-eslint/no-confusing-void-expression': 'error',
Expand Down

0 comments on commit ba1a840

Please sign in to comment.