Skip to content

Commit

Permalink
3
Browse files Browse the repository at this point in the history
  • Loading branch information
Ellomend committed May 12, 2024
1 parent 90f5491 commit 7b6573b
Show file tree
Hide file tree
Showing 12 changed files with 511 additions and 56 deletions.
19 changes: 15 additions & 4 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,23 @@ require('@rushstack/eslint-patch/modern-module-resolution')

module.exports = {
root: true,
'extends': [
extends: [
'plugin:vue/vue3-essential',
'eslint:recommended',
'@vue/eslint-config-prettier/skip-formatting'
'@vue/eslint-config-prettier/skip-formatting',
'plugin:@typescript-eslint/recommended'
],
parserOptions: {
ecmaVersion: 'latest'
}
ecmaVersion: 'latest',
parser: '@typescript-eslint/parser' // Specify TypeScript parser for script sections
},
plugins: [
'@typescript-eslint' // Use the TypeScript ESLint plugin
],
overrides: [
{
files: ['*.ts', '*.tsx', '*.vue'], // Ensure TypeScript and Vue files are included
parser: '@typescript-eslint/parser'
}
]
}
Loading

0 comments on commit 7b6573b

Please sign in to comment.