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