-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy path.prettierignore
More file actions
50 lines (42 loc) · 1.41 KB
/
.prettierignore
File metadata and controls
50 lines (42 loc) · 1.41 KB
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
40
41
42
43
44
45
46
47
48
49
50
# Ignore built code
**/dist
packages/testing/config
# Ignore fixture projects
/__fixtures__
# Ignore files ignored by nested .gitignore
# prettier doesn't support this:
# https://github.com/prettier/prettier/issues/4081
# oxc-format does though, so we can remove this if/when we switch over
# https://github.com/oxc-project/oxc/pull/17352
/local-testing-project/.cedar/
/local-testing-project/api/db/generated/
/local-testing-project/api/types/graphql.d.ts
/local-testing-project/web/types/graphql.d.ts
/local-testing-project-live/.cedar/
/local-testing-project-live/api/db/generated/
/local-testing-project-live/api/types/graphql.d.ts
/local-testing-project-live/web/types/graphql.d.ts
# Ignore the certain files in /docs
/docs/.docusaurus
/docs/build
/docs/versioned_docs
/docs/versioned_sidebars
# https://github.com/prettier/prettier/issues/16952
/docs/docs/how-to/pagination.md
/docs/docs/tutorial/chapter2/routing-params.md
/docs/docs/tutorial/chapter6/comment-form.md
# Ignore the .nx directory
/.nx
# Ignore create-cedar-app (we don't want to mismatch between framework and project)
/packages/create-cedar-app/templates
/packages/create-cedar-app/tests/**/*.sh
# Ignore create-cedar-rsc-app (it has it's own config)
/packages/create-cedar-rsc-app
# TODO(jgmw): Is this too broad?
# Ignore test fixtures
**/__testfixtures__
**/__tests__/fixtures
**/__tests__/__fixtures__
**/__tests__/prisma-client
/.nx/cache
/.nx/workspace-data