forked from webpack/webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.prettierignore
More file actions
42 lines (36 loc) · 725 Bytes
/
.prettierignore
File metadata and controls
42 lines (36 loc) · 725 Bytes
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
package.json
# Ignore some test files
test/**/*.*
!test/*.js
!test/*.cjs
!test/*.mjs
!test/**/webpack.config.js
!test/**/webpack.config.cjs
!test/**/webpack.config.mjs
!test/**/test.config.js
!test/**/test.filter.js
!test/**/errors.js
!test/**/warnings.js
!test/**/deprecations.js
!test/**/infrastructure-log.js
!test/*.md
!test/helpers/*.*
!test/runner/**/*.*
!test/benchmarkCases/**/*.mjs
test/js/**/*.*
# Ignore some folders
benchmark/
coverage/
# Ignore generated files
*.check.js
*.check.d.ts
types.d.ts
declarations/WebpackOptions.d.ts
# Ignore precompiled schemas
schemas/**/*.check.js
# Ignore example fixtures
examples/**/*
!examples/*
!examples/**/webpack.config.js
!examples/**/test.filter.js
.vscode/**/*.*