0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 01:21:03 +01:00
mongodb/.prettierignore
Alexander Neben d11507f608 SERVER-87001 Added markdown formatting to bazel and commit queue (#19273)
GitOrigin-RevId: ec129b1fb02f9615f32fbfd5784e1bad05f3947b
2024-02-28 16:53:49 +00:00

22 lines
649 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 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