Skip to content

Commit

Permalink
fea: switch statement support
Browse files Browse the repository at this point in the history
Will resolve some linting errors discussed in os-js/osjs-server#67.
  • Loading branch information
ajmeese7 committed Jan 26, 2025
1 parent 0409ea9 commit 0570b23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module.exports = {
'quotes': ['error', 'single'],
'linebreak-style': ['error', 'unix'],
'semi': ['error', 'always'],
'indent': ['error', 2],
'indent': ['error', 2, { 'SwitchCase': 1 }],
'radix': 1,
'eol-last': ['error', 'always'],
'consistent-return': 1,
Expand Down

0 comments on commit 0570b23

Please sign in to comment.