Skip to content

Commit 904627a

Browse files
committed
Remove mentions of obsolete .pnpm-store folder
1 parent 090e2b4 commit 904627a

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
/.pnpm-store/
21
/node_modules/
3-
42
/dist/
53

64
Thumbs.db

.prettierignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/.pnpm-store/
21
/dist/
32

43
/pnpm-lock.yaml

eslint.config.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ import { defineConfig, globalIgnores } from 'eslint/config';
33

44
const opts = detectOpts(import.meta.dirname);
55

6-
const config = defineConfig([
7-
globalIgnores(['.pnpm-store/', 'dist/']),
8-
...createConfig(opts),
9-
]);
6+
const config = defineConfig([globalIgnores(['dist/']), ...createConfig(opts)]);
107

118
export default config;

0 commit comments

Comments
 (0)