Skip to content

Commit 3e5ea9b

Browse files
authored
chore(dev-deps): update all (#71)
1 parent 04927d5 commit 3e5ea9b

File tree

5 files changed

+947
-1245
lines changed

5 files changed

+947
-1245
lines changed

eslint.config.js

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
import eslint from '@eslint/js';
2+
import eslintConfigPrettier from 'eslint-config-prettier';
3+
import eslintPluginVue from 'eslint-plugin-vue';
4+
import globals from 'globals';
5+
import typescriptEslint from 'typescript-eslint';
6+
7+
export default typescriptEslint.config(
8+
{ ignores: ['*.d.ts', '**/coverage', '**/dist'] },
9+
{
10+
extends: [
11+
eslint.configs.recommended,
12+
...typescriptEslint.configs.recommended,
13+
...eslintPluginVue.configs['flat/recommended'],
14+
],
15+
files: ['**/*.{ts,vue}'],
16+
languageOptions: {
17+
ecmaVersion: 'latest',
18+
sourceType: 'module',
19+
globals: globals.browser,
20+
parserOptions: {
21+
parser: typescriptEslint.parser,
22+
},
23+
},
24+
rules: {
25+
'vue/html-self-closing': [
26+
'error',
27+
{
28+
html: {
29+
void: 'always',
30+
normal: 'never',
31+
component: 'always',
32+
},
33+
svg: 'always',
34+
math: 'always',
35+
},
36+
],
37+
},
38+
},
39+
eslintConfigPrettier
40+
);

eslint.config.mjs

Lines changed: 0 additions & 39 deletions
This file was deleted.

0 commit comments

Comments
 (0)