Skip to content

Commit

Permalink
chore(.eslintrc.js): clean up config props
Browse files Browse the repository at this point in the history
Some properties are unnecessary/unused. Others can be updated to target
latest EMCAScript code. A brace was reformatted to follow the brace
style guide.
  • Loading branch information
bryan-hoang committed Aug 27, 2023
1 parent 3cacc2d commit 194dd62
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,17 @@ module.exports = {
},
'extends': 'eslint:recommended',
'parserOptions': {
'ecmaVersion': 13,
'ecmaVersion': 'latest',
'sourceType': 'script',
},
globals: {
dcpConfig: true
},
'plugins': [
'@distributive',
'jsdoc',
],
'rules': {
'indent': [
'warn',
2,
{
2, {
'SwitchCase': 1,
'ignoredNodes': ['CallExpression', 'ForStatement']
}
Expand Down Expand Up @@ -62,9 +58,6 @@ module.exports = {
'no-multi-spaces': [
'off',
],
'prettier/prettier': [
'off',
],
'vars-on-top': [
'error',
],
Expand Down

0 comments on commit 194dd62

Please sign in to comment.