mirror of
https://github.com/gotson/komga.git
synced 2025-01-07 03:07:16 +08:00
35 lines
815 B
JavaScript
35 lines
815 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
},
|
|
extends: [
|
|
'plugin:vue/essential',
|
|
'@vue/typescript',
|
|
],
|
|
rules: {
|
|
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
|
'vue/no-unused-components': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
|
'no-fallthrough': 'off',
|
|
'comma-dangle': ['error', 'always-multiline'],
|
|
'semi': ['error', 'never'],
|
|
'quotes': ['error', 'single'],
|
|
'vue/valid-v-slot': 'off',
|
|
},
|
|
parserOptions: {
|
|
parser: '@typescript-eslint/parser',
|
|
},
|
|
overrides: [
|
|
{
|
|
files: [
|
|
'**/__tests__/*.{j,t}s?(x)',
|
|
'**/tests/unit/**/*.spec.{j,t}s?(x)',
|
|
],
|
|
env: {
|
|
jest: true,
|
|
},
|
|
},
|
|
],
|
|
}
|