forked from exercism/jq
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.prettierignore
More file actions
28 lines (25 loc) · 1.1 KB
/
.prettierignore
File metadata and controls
28 lines (25 loc) · 1.1 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
# using prettier:
# - install it in the track root dir: `npm install prettier`
# - note the .gitignore file
# - check the status without writing changes: `npx prettier --check .`
# - the above, verbosely: `npx prettier --check --log-level debug .`
# - preview the changes: (using https://dandavison.github.io/delta/)
# - fish: `set f some.file; delta $f (npx prettier $f | psub)`
# - bash: `f="some.file"; delta "$f" <(npx prettier "$f")`
# - write the changes: `npx prettier --write .`
# prettier wants to convert exercism markdown admonition blocks to code fences.
# from: ~~~~exercism/note
# to: ```exercism/note
# I don't know how to configure this behaviour away.
# Don't write those changes into git.
# ignore files written by configlet or Exercism org-wide files
exercises/practice/*/.meta/config.json
exercises/practice/*/.docs/instructions.md
CODE_OF_CONDUCT.md
# things that don't need to be inspected
generate_tests.json
.github/pull_request_template.md
exercises/concept/*/.meta/config.json
config.json
exercises/practice/*/.docs/introduction.md
exercises/practice/*/.docs/instructions.md