aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.js
diff options
context:
space:
mode:
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
deleted file mode 100644
index eb5df15..0000000
--- a/.eslintrc.js
+++ /dev/null
@@ -1,18 +0,0 @@
-module.exports = {
- root: true,
- env: {
- node: true,
- },
- extends: [
- 'plugin:vue/vue3-essential',
- '@vue/airbnb',
- '@vue/typescript',
- ],
- parserOptions: {
- parser: '@typescript-eslint/parser',
- },
- rules: {
- 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
- 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
- },
-};