Skip to content

Commit

Permalink
fixing globs
Browse files Browse the repository at this point in the history
  • Loading branch information
zemd committed Mar 4, 2024
1 parent bd56a92 commit a792b5d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/ninety-teachers-fix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@zemd/eslint-flat-config": patch
---

fixing glob configs
4 changes: 2 additions & 2 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const supportedAllFileTypesSet = [
export const supportedAllFileTypes = supportedAllFileTypesSet.join(",");

export const supportedReactFileTypesSet = [
...supportedJsxFileTypes,
...supportedTsxFileTypes,
...supportedJsxFileTypesSet,
...supportedTsxFileTypesSet,
] as const;
export const supportedReactFileTypes = supportedReactFileTypesSet.join(",");

0 comments on commit a792b5d

Please sign in to comment.