Update Node, ESLint and various dependencies

This commit is contained in:
2024-05-01 17:48:07 +02:00
parent 5ec07b62d8
commit e6c75eac69
6 changed files with 36 additions and 39 deletions

20
eslint.config.js Normal file
View File

@@ -0,0 +1,20 @@
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',
}
}
);