webpack/.prettierignore

41 lines
681 B
Plaintext
Raw Normal View History

package.json
2023-04-13 02:09:24 +08:00
# Ignore some test files
test/**/*.*
2018-05-03 21:40:58 +08:00
!test/*.js
2025-04-22 05:17:46 +08:00
!test/*.cjs
!test/*.mjs
2018-05-03 21:40:58 +08:00
!test/**/webpack.config.js
2025-05-01 22:36:51 +08:00
!test/**/webpack.config.cjs
!test/**/webpack.config.mjs
2023-04-13 02:09:24 +08:00
!test/**/test.config.js
!test/**/test.filter.js
!test/**/errors.js
!test/**/warnings.js
!test/**/deprecations.js
2024-11-01 21:55:49 +08:00
!test/**/infrastructure-log.js
2023-04-13 02:09:24 +08:00
!test/*.md
!test/helpers/*.*
2025-06-20 22:08:04 +08:00
!test/runner/**/*.*
!test/benchmarkCases/**/*.mjs
2025-04-22 05:17:46 +08:00
test/js/**/*.*
2023-04-13 02:09:24 +08:00
# Ignore some folders
benchmark/
coverage/
2021-06-21 17:18:23 +08:00
# Ignore generated files
*.check.js
2025-05-16 21:49:07 +08:00
*.check.d.ts
types.d.ts
declarations/WebpackOptions.d.ts
2023-04-13 02:09:24 +08:00
# Ignore precompiled schemas
schemas/**/*.check.js
# Ignore example fixtures
examples/
!examples/**/webpack.config.js
.vscode/**/*.*