Skip to content

Commit 635ed81

Browse files
committed
chore: update dependencies and improve ESLint configuration
1 parent 237293a commit 635ed81

File tree

6 files changed

+20792
-24307
lines changed

6 files changed

+20792
-24307
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,3 +86,5 @@ dispositifs*.xlsx
8686
.cache
8787
vite.config.*.timestamp*
8888
vitest.config.*.timestamp*
89+
.cursor/rules/nx-rules.mdc
90+
.github/instructions/nx.instructions.md

apps/nuxt/.eslintrc.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
{
22
"extends": ["@nuxt/eslint-config", "@vue/eslint-config-prettier/skip-formatting", "../../.eslintrc.json"],
3-
"ignorePatterns": ["!**/*", ".nuxt/**", ".output/**", "node_modules", "nuxt.config.ts", "src/public/scripts/iframe.js"],
3+
"ignorePatterns": [
4+
"!**/*",
5+
".nuxt/**",
6+
".output/**",
7+
"node_modules",
8+
"nuxt.config.ts",
9+
"src/public/scripts/iframe.js",
10+
"**/vite.config.*.timestamp*",
11+
"**/vitest.config.*.timestamp*"
12+
],
413
"overrides": [
514
{
615
"files": ["*.ts", "*.tsx", "*.js", "*.jsx", "*.vue"],

libs/data/.eslintrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"extends": ["../../.eslintrc.json"],
3-
"ignorePatterns": ["!**/*"],
3+
"ignorePatterns": ["!**/*", "**/vite.config.*.timestamp*", "**/vitest.config.*.timestamp*"],
44
"overrides": [
55
{
66
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],

nx.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,5 @@
6060
"targetName": "e2e"
6161
}
6262
}
63-
],
64-
"useLegacyCache": true
63+
]
6564
}

0 commit comments

Comments
 (0)