Skip to content

Commit 4bf3686

Browse files
committed
refactor(ignore): refactor and more description for ignore files
1 parent a961603 commit 4bf3686

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

src/configs.ts

+13-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export const zeroInstalls = `
2-
# yarn 2 (Zero-Installs)
2+
# Yarn 2 (Zero-Installs + Plug'n'Play)
33
.yarn/*
44
!.yarn/cache
55
!.yarn/patches
@@ -10,7 +10,7 @@ export const zeroInstalls = `
1010
`;
1111

1212
export const nonZeroInstalls = `
13-
# yarn 2
13+
# Yarn 2
1414
.yarn/*
1515
!.yarn/patches
1616
!.yarn/releases
@@ -28,16 +28,23 @@ export const eslintBaseConfigs = {
2828
parserOptions: {
2929
ecmaVersion: 12,
3030
},
31-
plugins: [],
3231
rules: {},
3332
};
3433

3534
export const ignoreFiles = `
36-
build
37-
dist
35+
# Builds
3836
lib
39-
coverage
37+
dist
38+
build
39+
40+
# Yarn
4041
.yarn
42+
.pnp.*
43+
44+
# Test
45+
coverage
46+
47+
# Misc
4148
te?mp
4249
`;
4350

0 commit comments

Comments
 (0)