Files
mongo/.prettierignore
James H 46f88aadc8 SERVER-92467 Add golden tests and utilities for classic & sharded suite (#31391)
GitOrigin-RevId: bbb688b725b4d937d7075ab2f5aa6f03f2343f52
2025-04-09 20:58:42 +00:00

25 lines
723 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
# We are only going to do markdown file formatting for now
# Hopefully we will use prettier for more file types in the future
!*.md
# Ignore all golden test output files
jstests/*golden*/expected_output/*
# 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
# Ignore all formatting in third_party/*
src/third_party