diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 0000000..671e312 --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,25 @@ +module.exports = { + root: true, + env: { + node: true, + browser: true, + es2022: true + }, + extends: [ + 'eslint:recommended', + 'plugin:vue/vue3-recommended' + ], + parserOptions: { + ecmaVersion: 'latest', + sourceType: 'module' + }, + rules: { + 'no-console': 'warn', + 'no-debugger': 'warn', + 'vue/multi-word-component-names': 'off', + 'no-unused-vars': 'warn' + }, + globals: { + globalThis: 'readonly' + } +}; \ No newline at end of file