Skip to content

Commit

Permalink
Only allow i,j,k
Browse files Browse the repository at this point in the history
  • Loading branch information
rekmarks committed Sep 2, 2021
1 parent 20ef219 commit bb8e3a2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions packages/base/rules-snapshot.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,9 @@
"min": 2,
"properties": "never",
"exceptionPatterns": [
"[i-k]",
"[x-z]",
"[r-v]"
"i",
"j",
"k"
]
}
],
Expand Down
2 changes: 1 addition & 1 deletion packages/base/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ module.exports = {
{
min: 2,
properties: 'never',
exceptionPatterns: ['[i-k]', '[x-z]', '[r-v]'],
exceptionPatterns: ['i', 'j', 'k'],
},
],
'lines-between-class-members': 'error',
Expand Down

0 comments on commit bb8e3a2

Please sign in to comment.