-
Notifications
You must be signed in to change notification settings - Fork 5
/
.prettierignore
23 lines (18 loc) · 995 Bytes
/
.prettierignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
node_modules
# generated stuff, probably keep in sync with simillar section of .eslintignore (some may or may not also be in .gitignore, selectively)
client/build/
client/build_prod/
client/src/**/*.scss.d.ts
client/src/**/*.gql.ts
client/scripts/typescript_progress/output
client/**/cypress-snapshots.js
server/.dev_artifacts/compiled_schema.graphql
*/.coverage/
*/.cache
# TODO Prettier doesn't know our yaml contains markdown, I think some of it's auto formatting might strip meaningful
# whitespace (e.g. double space at end of line to indicate new paragraph). TODO try formatting again, carefully check changes
client/src/**/*.yaml
# TODO This should just be the index.hbs.html, more readable and editable with formatting but less optimized output.
# Maybe add minification of the index html to build base, then let prettier format this file (minification of those files
# might be a bit of headache in dev, might warrant separate dev and prod build base commands)
client/src/**/*.html