Skip to content

Commit

Permalink
Use a simpler import
Browse files Browse the repository at this point in the history
  • Loading branch information
thewilkybarkid committed Jul 16, 2024
1 parent 2b05ae3 commit 31134c4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@
"import/no-cycle": "error",
"import/no-duplicates": ["error", { "prefer-inline": true }],
"import/no-extraneous-dependencies": ["error"],
"import/no-internal-modules": ["error", { "allow": ["*/lib/*", "world_countries_lists/data/**/*.json"] }],
"import/no-internal-modules": [
"error",
{ "allow": ["*/lib/*", "vitest/config", "world_countries_lists/data/**/*.json"] }
],
"import/no-named-as-default": "off",
"import/no-named-as-default-member": "off",
"quotes": ["error", "single", { "avoidEscape": true }]
Expand Down
1 change: 0 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
"prettier-plugin-sh": "^0.14.0",
"prettier-plugin-toml": "^2.0.1",
"typescript": "^5.5.3",
"vite": "^5.3.3",
"vitest": "^2.0.2"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion vitest.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { defineConfig } from 'vite'
import { defineConfig } from 'vitest/config'

export default defineConfig({
test: {
Expand Down

0 comments on commit 31134c4

Please sign in to comment.