webpack/.prettierignore

40 lines
622 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
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/*.*
!test/benchmarkCases/**/*.mjs
!test/_helpers/**/*.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
2023-04-13 02:09:24 +08:00
# Ignore not supported files
*.d.ts
2023-05-17 00:05:43 +08:00
!module.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/**/*.*