Skip to content

Commit

Permalink
fix(eslint-plugin-experience): invalid class property
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode committed Nov 2, 2023
1 parent 447188e commit 40d9ad4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions projects/commitlint-config/commitlint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ module.exports = {
2,
'always',
[
'release',
'deprecate',
'schematics',
'all',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,15 +80,15 @@ module.exports = {
selector: 'classMethod',
format: ['strictCamelCase'],
filter: {
regex: '(HTML|CSS|TS|JSON|CVC|CVCChange|URI|URL|DOM)$',
regex: '(API|HTML|CSS|TS|JSON|CVC|CVCChange|URI|URL|DOM)$',
match: false,
},
},
{
selector: 'classProperty',
format: ['strictCamelCase'],
filter: {
regex: '[API|CVC|HTML|axisX|axisY]',
regex: '(API|CVC|HTML|axisX|axisY)$',
match: false,
},
},
Expand Down

0 comments on commit 40d9ad4

Please sign in to comment.