2024-02-28 17:45:08 +01:00
|
|
|
# Ignore everything
|
|
|
|
# We are making prettier opt in for the moment while we work on the rollout
|
|
|
|
# !*/ means do not ignore recursive directories
|
|
|
|
# Together these work togather to make nothing opted-in by default
|
|
|
|
*
|
|
|
|
!*/
|
|
|
|
|
2024-04-04 01:12:53 +02:00
|
|
|
# Do not ignore markdown and yaml
|
|
|
|
# We are only going to do markdown and yaml file formatting for now
|
2024-02-28 17:45:08 +01:00
|
|
|
# Hopefully we will use prettier for more file types in the future
|
|
|
|
!*.md
|
2024-04-04 01:12:53 +02:00
|
|
|
!*.yml
|
|
|
|
!*.yaml
|
2024-02-05 19:11:10 +01:00
|
|
|
|
|
|
|
# Ignore all template files
|
|
|
|
# When we eventually enable prettier on javascript these files are invalid and should be ignored
|
|
|
|
**/*.tpl.*
|
|
|
|
|
|
|
|
# Ignore .yy files since prettier seems to think these are json files
|
|
|
|
**/*.yy
|
|
|
|
|
2024-04-04 01:12:53 +02:00
|
|
|
# Ignored generated resmoke suites
|
|
|
|
buildscripts/resmokeconfig/matrix_suites/generated_suites/*.yml
|
|
|
|
|
|
|
|
# Ignore generated pnpm lock file
|
|
|
|
pnpm-lock.yaml
|
|
|
|
|
|
|
|
# Ignore version expansions that are created in evergreen
|
|
|
|
version_expansions.yml
|
|
|
|
|
2024-02-28 17:45:08 +01:00
|
|
|
# Ignore all formatting in third_party/*
|
|
|
|
src/third_party
|