Skip to content

Commit 1e6ca06

Browse files
committed
docs: align tseslint name
1 parent dc06535 commit 1e6ca06

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/user-guide/index.md

Lines changed: 3 additions & 3 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 typescriptEslint from 'typescript-eslint';
81+
import tseslint from 'typescript-eslint';
8282

8383
export default tseslint.config(
8484
{ ignores: ['*.d.ts', '**/coverage', '**/dist'] },
8585
{
8686
extends: [
8787
eslint.configs.recommended,
88-
...typescriptEslint.configs.recommended,
88+
...tseslint.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: typescriptEslint.parser,
97+
parser: tseslint.parser,
9898
},
9999
},
100100
rules: {

0 commit comments

Comments
 (0)