Skip to content

Commit 94351ad

Browse files
committed
Update dependencies and configuration settings
- Updated pnpm lockfile version to 9.0 and upgraded several package versions, including TypeScript, ESLint, and Jest. - Added `.cache/` to `.gitignore` to prevent caching files from being tracked. - Modified VSCode settings to explicitly specify ESLint fix action. - Adjusted regex in ESLint plugin configuration to match hidden directories for VSCode extensions.
1 parent 143b016 commit 94351ad

File tree

4 files changed

+5674
-4262
lines changed

4 files changed

+5674
-4262
lines changed

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# General
22
.DS_Store
33
*.tgz
4+
.cache/
45
node_modules/
56
# TypeScript Build Artifacts
67
bld/

Diff for: .vscode/settings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"editor.insertSpaces": true,
44
"editor.formatOnSave": true,
55
"editor.codeActionsOnSave": {
6-
"source.fixAll.eslint": true
6+
"source.fixAll.eslint": "explicit"
77
},
88
"editor.defaultFormatter": "esbenp.prettier-vscode",
99
"editor.rulers": [80],

Diff for: packages/eslint-plugin/src/library/configs/@common.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ export const NO_UNUSED_VARS_OPTIONS = {
66
};
77

88
export const VSCODE = require.main
9-
? /[\\/]\.vscode(?:-server)?[\\/]extensions[\\/]/.test(require.main.filename)
9+
? /[\\/]\.[^\\/]+[\\/]extensions[\\/]/.test(require.main.filename)
1010
: false;

0 commit comments

Comments
 (0)