-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathignore-files.js
43 lines (43 loc) · 858 Bytes
/
ignore-files.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
export default [
'.circleci',
'.DS_Store',
'.editorconfig',
'.eslintignore',
'.flowconfig',
'.git',
'.github',
'.travis.yml',
'.vscode',
'.watchmanconfig',
'.yarnrc',
'appveyor.yml',
'karma.conf.js',
'node_modules',
'package-lock.json',
'pnpm-debug.log',
'pnpm-lock.yaml',
'.devcontainer.json',
'test',
'yarn-error.log',
'yarn.lock',
/^(babel|commitlint|jest|vitest)\.config\.[cm]?(j|t)s$/,
/^\.?nano-staged\.(c|m)?js(on)?$/,
/^\.?simple-git-hooks.js(on)?$/,
/^\.?simple-pre-commit.js(on)?$/,
/^\.babelrc/,
/^\.clean-publish/,
/^\.commitlintrc/,
/^\.eslintrc/,
/^\.jsconfig/,
/^\.jsdocrc/,
/^\.lintstagedrc/,
/^\.nanostagedrc/,
/^\.prettierrc/,
/^\.remarkrc/,
/^\.renovaterc/,
/^\.size-limit/,
/^\.yaspellerrc/,
/^changelog/i,
/eslint.config.(c|m)?js/,
/README\.[\w-]+\.md/
]