blob: 2af5d7d43a64722e20c51c8db0749181afb06b47 (
plain)
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
|
# It would be nice to remove this file and use .gitignore instead however we need to add package.json and __fixtures__
/node_modules
/.pnpm-store
/config.js
/coverage
/dist
/tmp
.DS_Store
.cache
/*.log
package.json
**/__fixtures__/
**/__mocks__/
.clinic/
.eslintcache
# generated code
**/*.generated.ts
/tools/dist
/patches
**/tmp/
/.venv/
pdm.lock
pnpm-lock.yaml
# Ignore the mkdocs.yml file, as Prettier moves some comments around
/tools/mkdocs/mkdocs.yml
# Ignore the list of abbreviations, as Prettier messes up the syntax
/tools/mkdocs/includes/abbreviations.md
# Ignore overrides/main.html because Prettier messes up the formatting
/tools/mkdocs/overrides/main.html
# mkdocs generated files
/tools/mkdocs/docs
/tools/mkdocs/site
|