2
0
mirror of https://github.com/tenrok/vue-ganttastic.git synced 2026-06-24 15:30:33 +03:00

fix previous fix

This commit is contained in:
2021-10-15 00:19:56 +03:00
parent 8ca4d60e64
commit 1917c82292
24 changed files with 17716 additions and 6083 deletions
+17
View File
@@ -0,0 +1,17 @@
module.exports = {
root: true,
env: {
node: true
},
'extends': [
'plugin:vue/essential',
'eslint:recommended'
],
parserOptions: {
parser: 'babel-eslint'
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
}
}