chore(eslint): use moeru config (#664)
This commit is contained in:
@@ -0,0 +1,70 @@
|
||||
import { defineConfig } from '@moeru/eslint-config'
|
||||
|
||||
export default defineConfig({
|
||||
masknet: false,
|
||||
preferArrow: false,
|
||||
perfectionist: false,
|
||||
sonarjs: false,
|
||||
sortPackageJsonScripts: false,
|
||||
typescript: true,
|
||||
unocss: true,
|
||||
vue: true,
|
||||
}, {
|
||||
ignores: [
|
||||
'cspell.config.yaml',
|
||||
'cspell.config.yml',
|
||||
'crowdin.yaml',
|
||||
'crowdin.yml',
|
||||
'**/assets/js/**',
|
||||
'**/assets/live2d/models/**',
|
||||
'apps/stage-tamagotchi/out/**',
|
||||
'apps/stage-tamagotchi/src/bindings/**',
|
||||
'apps/stage-tamagotchi/src-tauri/**',
|
||||
'apps/stage-tamagotchi-electron/out/**',
|
||||
'apps/stage-tamagotchi-electron/src/renderer/bindings/**',
|
||||
'crates/**',
|
||||
'**/drizzle/**',
|
||||
'**/.astro/**',
|
||||
],
|
||||
}, {
|
||||
rules: {
|
||||
'antfu/import-dedupe': 'error',
|
||||
// TODO: remove this
|
||||
'depend/ban-dependencies': 'warn',
|
||||
'import/order': 'off',
|
||||
'no-console': ['error', { allow: ['warn', 'error', 'info'] }],
|
||||
'perfectionist/sort-imports': [
|
||||
'error',
|
||||
{
|
||||
groups: [
|
||||
'type-builtin',
|
||||
'type-import',
|
||||
'type-internal',
|
||||
['type-parent', 'type-sibling', 'type-index'],
|
||||
'default-value-builtin',
|
||||
'named-value-builtin',
|
||||
'value-builtin',
|
||||
'default-value-external',
|
||||
'named-value-external',
|
||||
'value-external',
|
||||
'default-value-internal',
|
||||
'named-value-internal',
|
||||
'value-internal',
|
||||
['default-value-parent', 'default-value-sibling', 'default-value-index'],
|
||||
['named-value-parent', 'named-value-sibling', 'named-value-index'],
|
||||
['wildcard-value-parent', 'wildcard-value-sibling', 'wildcard-value-index'],
|
||||
['value-parent', 'value-sibling', 'value-index'],
|
||||
'side-effect',
|
||||
'style',
|
||||
],
|
||||
newlinesBetween: 'always',
|
||||
},
|
||||
],
|
||||
// 'sonarjs/cognitive-complexity': 'off',
|
||||
// 'sonarjs/no-commented-code': 'off',
|
||||
// 'sonarjs/pseudo-random': 'off',
|
||||
'style/padding-line-between-statements': 'error',
|
||||
'vue/prefer-separate-static-class': 'off',
|
||||
'yaml/plain-scalar': 'off',
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user