mirror of
https://github.com/yuzu-emu/liftinstall.git
synced 2024-11-21 23:35:43 +01:00
d28b19c25a
... also update dependencies to their latest LTS version
17 lines
296 B
JavaScript
17 lines
296 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true
|
|
},
|
|
extends: [
|
|
'plugin:vue/recommended',
|
|
'@vue/standard'
|
|
],
|
|
rules: {
|
|
'no-console': 'off',
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
|
'no-redeclare': 'off',
|
|
camelcase: 'off'
|
|
}
|
|
}
|