forked from ChelseaKR/cairn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
45 lines (39 loc) · 1.46 KB
/
Copy path.gitignore
File metadata and controls
45 lines (39 loc) · 1.46 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
# generated index state
.cairn/
# python
__pycache__/
*.pyc
*.egg-info/
build/
dist/
.venv/
# browser check tooling (installed on demand, never by the demo path).
#
# node_modules is ignored; package-lock.json is NOT, and used to be. Ignoring
# the lock file while the manifest carried carets meant the rule set grading
# the interface — axe-core — was resolved fresh on every machine and every CI
# run, so "62/62 passed" was a statement about whatever version npm happened
# to pick that morning. This repository pins the auditor that grades the
# engine to an exact commit and says at length why; the auditor that grades
# the page deserves the same treatment. The lock is committed, the manifest
# names exact versions, and CI installs with `npm ci`, which fails rather than
# silently resolving something else.
tests/browser/node_modules/
# the auditor, resolved at run time from plumbline.pin — never committed,
# never a dependency of this project
.plumbline-cache/
plumbline/audits/
# evidence recorded from a running server by ./plumbline-live.sh. A recording
# is evidence you make, not evidence the repository ships: it is stamped with
# the moment it was taken, so committing one would put a timestamp inside a
# hash and make the tree differ from itself on every run. The committed
# bundle under plumbline/bundle is the deterministic one.
.plumbline-live/
# tooling caches
.ruff_cache/
.pytest_cache/
# coverage and mypy caches
.coverage
coverage.xml
htmlcov/
.mypy_cache/