-
Notifications
You must be signed in to change notification settings - Fork 2.7k
/
.prettierignore
39 lines (34 loc) · 1.01 KB
/
.prettierignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
##### DISCLAIMER ######
# We have disabled the use of prettier in this project for a variety of reasons.
# Because much of this project has not been formatted, we don't want to want to
# apply formatting to everything and skew `git blame` stats. Instead, we should
# only format newly created files that we can guarantee have no existing git
# history. For this reason, we have disabled prettier project-wide except for
# a handful of files.
#
# ONLY ADD NEWLY CREATED FILES/PATHS TO THE LIST BELOW. DO NOT ADD EXISTING
# PROJECT FILES.
# ignores all files in /docs directory
!/docs
/docs/**
# Ignore all mdx & md files:
*.mdx
*.md
*.har
*.snap
!/docs/source
/docs/source/**
!/docs/source/development-testing
/docs/source/development-testing/**
!/docs/source/development-testing/reducing-bundle-size.mdx
!/docs/source/development-testing/schema-driven-testing.mdx
!docs/shared
/docs/shared/**
!/docs/shared/ApiDoc
!/docs/shared/ApiDoc/**
!/docs/shared/Overrides
!/docs/shared/Overrides/**
node_modules/
.yalc/
.next/
.changeset/