diff --git a/.eslintrc.js b/.eslintrc.js index 302e830..e814093 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -20,12 +20,9 @@ module.exports = { }, 'extends': 'eslint:recommended', 'parserOptions': { - 'ecmaVersion': 13, + 'ecmaVersion': 'latest', 'sourceType': 'script', }, - globals: { - dcpConfig: true - }, 'plugins': [ '@distributive', 'jsdoc', @@ -33,8 +30,7 @@ module.exports = { 'rules': { 'indent': [ 'warn', - 2, - { + 2, { 'SwitchCase': 1, 'ignoredNodes': ['CallExpression', 'ForStatement'] } @@ -62,9 +58,6 @@ module.exports = { 'no-multi-spaces': [ 'off', ], - 'prettier/prettier': [ - 'off', - ], 'vars-on-top': [ 'error', ],