mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-22 04:59:34 +01:00
e0b7fe8dff
GitOrigin-RevId: 2c817e7cc42d1d8500c0e3ec147bf6ca00cd76e1
37 lines
979 B
Plaintext
37 lines
979 B
Plaintext
# 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
|
|
*
|
|
!*/
|
|
|
|
# Do not ignore markdown and yaml
|
|
# We are only going to do markdown and yaml file formatting for now
|
|
# Hopefully we will use prettier for more file types in the future
|
|
!*.md
|
|
!*.yml
|
|
!*.yaml
|
|
|
|
# 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
|
|
|
|
# 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
|
|
|
|
# Ignore all formatting in third_party/*
|
|
src/third_party
|
|
|
|
# Ignore anything in the build output directories
|
|
build
|
|
bazel-*
|