-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.prettierignore
58 lines (47 loc) · 1.02 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
node_modules
# local env files
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
dist
dist-ssr
*.local
# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
# .md files are not formatted as there issues with tables and code blocks (reading it unrendered is more difficult when formatted)
*.md
# monorepo setup with turbo
.turbo
build/**
dist/**
# ignoring generated output of plugins
plugins/**/out/**
# server installed plugins
apps/server/plugins/*
!apps/server/plugins/.gitkeep
# ignoring schema.graphql as it's genrated from the server and doesn't need to be formatted
packages/relay/schema.graphql
packages/common/schema.graphql
# ignoring generated files from relay-compiler (copied from apps/web/.gitignore)
apps/web/src/relay/__gen__
apps/mobile-pwa/src/relay/__gen__
# ignoring uno.css to keep the bundle size small
apps/web/uno.css
apps/mobile-pwa/uno.css