We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a961603 commit 4bf3686Copy full SHA for 4bf3686
src/configs.ts
@@ -1,5 +1,5 @@
1
export const zeroInstalls = `
2
-# yarn 2 (Zero-Installs)
+# Yarn 2 (Zero-Installs + Plug'n'Play)
3
.yarn/*
4
!.yarn/cache
5
!.yarn/patches
@@ -10,7 +10,7 @@ export const zeroInstalls = `
10
`;
11
12
export const nonZeroInstalls = `
13
-# yarn 2
+# Yarn 2
14
15
16
!.yarn/releases
@@ -28,16 +28,23 @@ export const eslintBaseConfigs = {
28
parserOptions: {
29
ecmaVersion: 12,
30
},
31
- plugins: [],
32
rules: {},
33
};
34
35
export const ignoreFiles = `
36
-build
37
-dist
+# Builds
38
lib
39
-coverage
+dist
+build
+
40
+# Yarn
41
.yarn
42
+.pnp.*
43
44
+# Test
45
+coverage
46
47
+# Misc
48
te?mp
49
50
0 commit comments