Skip to content

Commit 8466d66

Browse files
committed
docs: update
1 parent 1e6ca06 commit 8466d66

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/user-guide/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,14 @@ import eslint from '@eslint/js';
7878
import eslintConfigPrettier from 'eslint-config-prettier';
7979
import eslintPluginVue from 'eslint-plugin-vue';
8080
import globals from 'globals';
81-
import tseslint from 'typescript-eslint';
81+
import typescriptEslint from 'typescript-eslint';
8282

83-
export default tseslint.config(
83+
export default typescriptEslint.config(
8484
{ ignores: ['*.d.ts', '**/coverage', '**/dist'] },
8585
{
8686
extends: [
8787
eslint.configs.recommended,
88-
...tseslint.configs.recommended,
88+
...typescriptEslint.configs.recommended,
8989
...eslintPluginVue.configs['flat/recommended'],
9090
],
9191
files: ['**/*.{ts,vue}'],
@@ -94,7 +94,7 @@ export default tseslint.config(
9494
sourceType: 'module',
9595
globals: globals.browser,
9696
parserOptions: {
97-
parser: tseslint.parser,
97+
parser: typescriptEslint.parser,
9898
},
9999
},
100100
rules: {

0 commit comments

Comments
 (0)