mirror of
https://github.com/sd-webui/stable-diffusion-webui.git
synced 2024-12-14 14:52:31 +03:00
23 lines
531 B
JavaScript
23 lines
531 B
JavaScript
|
module.exports = {
|
||
|
env: {
|
||
|
node: true
|
||
|
},
|
||
|
'extends': [
|
||
|
'plugin:vue/vue3-essential',
|
||
|
"plugin:@typescript-eslint/eslint-recommended",
|
||
|
"plugin:@typescript-eslint/recommended",
|
||
|
'eslint:recommended',
|
||
|
'@vue/typescript/recommended'
|
||
|
],
|
||
|
ignorePatterns: [
|
||
|
'node_modules/',
|
||
|
'dist/',
|
||
|
'coverage/',
|
||
|
'pnpm-lock.yaml',
|
||
|
'*.js'
|
||
|
],
|
||
|
rules: {
|
||
|
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
||
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
|
||
|
}
|
||
|
}
|