Skip to content

Commit

Permalink
feat(eslint-plugin-experience): no strict for class property
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode committed Feb 17, 2024
1 parent 6daaeed commit 1f14f78
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions projects/eslint-plugin-experience/configs/taiga-naming.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,21 +77,11 @@ module.exports = {
selector: 'enumMember',
},
{
format: ['strictCamelCase'],
selector: 'classMethod',
},
{
filter: 'CVC|axisX|axisY|API|HTML|DOM|URI|URL|JSON|CSS|HTML',
format: null,
format: ['camelCase'],
selector: 'classMethod',
},
{
format: ['strictCamelCase'],
selector: 'classProperty',
},
{
filter: 'CVC|axisX|axisY|API|HTML|DOM|URI|URL|JSON|CSS|HTML',
format: null,
format: ['camelCase'],
selector: 'classProperty',
},
],
Expand Down

0 comments on commit 1f14f78

Please sign in to comment.