You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
483 B

import tseslint from 'typescript-eslint';
import pluginVue from 'eslint-plugin-vue';
import vueParser from 'vue-eslint-parser';
export default tseslint.config(
...tseslint.configs.recommended,
...pluginVue.configs['flat/recommended'],
{
languageOptions: {
parser: vueParser,
parserOptions: {
parser: '@typescript-eslint/parser',
}
},
rules: {
'vue/html-self-closing': 'off',
'vue/max-attributes-per-line': 'off',
}
}
);