Skip to content

Commit

Permalink
chore: update patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdehaven committed Jun 5, 2024
1 parent f0e84d7 commit 14a76f7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ This package exports several ESLint configurations to use in your project. Read

#### Default config

The default config provides linting for files matching this pattern `**/*.{js,mjs,cjs,jsx,ts,tsx,vue}` and includes rules configured via:
The default config provides linting for files matching this pattern `**/*.{js,mjs,cjs,jsx,ts,tsx,mts,cts,vue}` and includes rules configured via:

- ESLint recommended rules
- TypeScript recommended rules
Expand Down
5 changes: 4 additions & 1 deletion configs/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,14 @@ export default [
'**/dist/',
'**/public/',
'**/bin/',
'**/.nuxt/',
'**/.output/',
'**/.wrangler/',
],
},
{
files: [
'**/*.{js,mjs,cjs,jsx,ts,tsx,vue}',
'**/*.{js,mjs,cjs,jsx,ts,tsx,mts,cts,vue}',
],
languageOptions: {
parser: vueParser,
Expand Down

0 comments on commit 14a76f7

Please sign in to comment.