65 lines
2.7 KiB
TypeScript
65 lines
2.7 KiB
TypeScript
|
|
import { globalIgnores } from 'eslint/config';
|
||
|
|
import { defineConfigWithVueTs, vueTsConfigs } from '@vue/eslint-config-typescript';
|
||
|
|
import pluginVue from 'eslint-plugin-vue';
|
||
|
|
import skipFormatting from '@vue/eslint-config-prettier/skip-formatting';
|
||
|
|
|
||
|
|
// To allow more languages other than `ts` in `.vue` files, uncomment the following lines:
|
||
|
|
// import { configureVueProject } from '@vue/eslint-config-typescript'
|
||
|
|
// configureVueProject({ scriptLangs: ['ts', 'tsx'] })
|
||
|
|
// More info at https://github.com/vuejs/eslint-config-typescript/#advanced-setup
|
||
|
|
|
||
|
|
export default defineConfigWithVueTs(
|
||
|
|
{
|
||
|
|
name: 'app/files-to-lint',
|
||
|
|
files: ['**/*.{ts,mts,tsx,vue}'],
|
||
|
|
},
|
||
|
|
|
||
|
|
globalIgnores(['**/dist/**', '**/dist-ssr/**', '**/coverage/**']),
|
||
|
|
|
||
|
|
pluginVue.configs['flat/essential'],
|
||
|
|
vueTsConfigs.recommended,
|
||
|
|
skipFormatting,
|
||
|
|
{
|
||
|
|
rules: {
|
||
|
|
'arrow-spacing': ['error', { 'before': true, 'after': true }],
|
||
|
|
'comma-dangle': ['error', { arrays: 'always-multiline', objects: 'always-multiline', imports: 'always-multiline', exports: 'always-multiline', functions: 'never' }],
|
||
|
|
'comma-spacing': ['error', { 'before': false, 'after': true }],
|
||
|
|
'indent': ['error', 2, { 'SwitchCase': 1 }],
|
||
|
|
'key-spacing': ['error', {
|
||
|
|
'beforeColon': false,
|
||
|
|
'afterColon': true,
|
||
|
|
}],
|
||
|
|
'keyword-spacing': ['error', {
|
||
|
|
'before': true,
|
||
|
|
'after': true,
|
||
|
|
}],
|
||
|
|
'no-multiple-empty-lines': ['error', { 'max': 1 }],
|
||
|
|
'no-multi-spaces': 'error',
|
||
|
|
'no-trailing-spaces': 'error',
|
||
|
|
'object-curly-spacing': ['error', 'always'],
|
||
|
|
'padding-line-between-statements': [
|
||
|
|
'error',
|
||
|
|
{ blankLine: 'always', prev: 'import', next: '*' },
|
||
|
|
{ blankLine: 'never', prev: 'import', next: 'import' },
|
||
|
|
],
|
||
|
|
'quotes': ['error', 'single'],
|
||
|
|
'semi': ['error', 'always'],
|
||
|
|
'space-before-blocks': ['error', 'always'],
|
||
|
|
'spaced-comment': ['error', 'always', {
|
||
|
|
'line': { 'markers': ['/'], 'exceptions': ['/'] },
|
||
|
|
'block': { 'exceptions': ['*'], 'balanced': true },
|
||
|
|
}],
|
||
|
|
'space-infix-ops': ['error', { 'int32Hint': false }],
|
||
|
|
'vue/html-closing-bracket-newline': ['error', { singleline: 'never', multiline: 'always' }],
|
||
|
|
'vue/html-indent': ['error', 2],
|
||
|
|
'vue/first-attribute-linebreak': ['error', { singleline: 'ignore', multiline: 'below' }],
|
||
|
|
'vue/max-attributes-per-line': ['error', { singleline: { max: 10 }, multiline: { max: 1 } }],
|
||
|
|
'vue/multi-word-component-names': 'off',
|
||
|
|
'vue/mustache-interpolation-spacing': ['error', 'always'],
|
||
|
|
'vue/no-multi-spaces': 'error',
|
||
|
|
'vue/no-static-inline-styles': 'error',
|
||
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
||
|
|
},
|
||
|
|
}
|
||
|
|
);
|