diff --git a/.eslintrc.js b/.eslintrc.js index 210193f..09ff85b 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -6,24 +6,25 @@ module.exports = { }, extends: ['eslint:recommended', 'plugin:prettier/recommended'], parserOptions: { - 'sourceType': 'commonjs', - "ecmaVersion": 'latest' + sourceType: 'commonjs', + ecmaVersion: 'latest' }, rules: { indent: 'off', semi: ['error', 'always'], - 'arrow-body-style': ["error", "as-needed"], - "prettier/prettier": [ - "error", { - "singleQuote": true, - "parser": "flow" - } + 'arrow-body-style': ['error', 'as-needed'], + 'prettier/prettier': [ + 'error', { + singleQuote: true, + parser: "flow", + tabWidth: 4 + }, ], }, overrides: [ { - 'files': ['*/*.js'], + files: ['*/*.js'], }, ], - 'ignorePatterns': ['.eslintrc.js'], + ignorePatterns: ['.eslintrc.js'], }; \ No newline at end of file