-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.prettierignore
More file actions
54 lines (51 loc) · 2.35 KB
/
Copy path.prettierignore
File metadata and controls
54 lines (51 loc) · 2.35 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
51
52
53
54
############################################
# .gitignore
#############################################
node_modules
cache
artifacts
.vscode/*
!*.default
generated
#############################################
package.json
pnpm-lock.yaml
*.hbs
#############################################
# Prettier reads only the ROOT .gitignore, so anything covered by a nested
# .gitignore has to be repeated here or a repo-wide run will format build output.
#############################################
dist
.kilo
# Copied in by rocketh's prepublishOnly, ignored in packages/rocketh/.gitignore.
packages/rocketh/README.md
packages/rocketh/LICENSE
# The demoes are standalone projects with their own .prettierrc and their own
# prettier-plugin-solidity, which is not installed at the root. Running the root
# formatter over them aborts the whole run on a missing plugin, so they format
# themselves from within their own workspace.
demoes
#############################################
# `work/` is COORDINATION STATE, written by the runner mid-task, and it is
# deliberately NOT gated.
#
# `format:check` is the FIRST link of the verify chain, so anything it gates can
# red a task on a file that task never touched. That is not hypothetical, and it
# was a loop rather than an incident: the runner writes a bounce sidecar
# (`work/questions/<type>-<slug>.md`) by quoting the gate's RAW output, which is
# program output (vitest's indented tree, pnpm banners, nested `>` levels).
# Prettier reflows blockquote content, so the sidecar the runner just wrote does
# not satisfy `prettier --check`, and the next task bounces on it, writing another
# one. The same class reached done records through transcribed `## Decisions`
# blocks and reached `work/tasks/ready/` through a tasking run.
#
# Three observations recorded this, and it was being worked around by hand: tasks
# carried "write emphasis with underscores, not asterisks, because the runner
# transcribes this into a file the format gate checks", and drivers were told to
# delete a leftover sidecar before re-dispatching. Ignoring the tree removes the
# cause instead, and none of those workarounds is needed any more.
#
# Nothing is lost by it: `work/` ships to nobody and its formatting has no
# consumer. It is excluded WHOLESALE, protocol docs included, on purpose. A
# partial exclusion leaves the same hole open for whichever file is written next.
work