Skip to content

Commit

Permalink
fix: try to fix parsing warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
atheck committed Nov 1, 2024
1 parent 5e7fa49 commit 24e08df
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion node.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import testingLibrary from "eslint-plugin-testing-library";

// biome-ignore lint/style/noDefaultExport: Required for ESLint
export default [
importPlugin.flatConfigs.typescript,
{
plugins: {
"@stylistic": stylistic,
Expand Down Expand Up @@ -807,6 +806,10 @@ export default [
"import/prefer-default-export": "off",
},
},
{
files: ["**/*.ts", "**/*.tsx"],
...importPlugin.flatConfigs.typescript,
},
{
files: ["**/*.ts", "**/*.tsx"],
plugins: {
Expand Down
5 changes: 4 additions & 1 deletion nodeWithBiome.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import testingLibrary from "eslint-plugin-testing-library";

// biome-ignore lint/style/noDefaultExport: Required for ESLint
export default [
importPlugin.flatConfigs.typescript,
{
plugins: {
"@stylistic": stylistic,
Expand Down Expand Up @@ -722,6 +721,10 @@ export default [
"import/prefer-default-export": "off",
},
},
{
files: ["**/*.ts", "**/*.tsx"],
...importPlugin.flatConfigs.typescript,
},
{
files: ["**/*.ts", "**/*.tsx"],
plugins: {
Expand Down

0 comments on commit 24e08df

Please sign in to comment.