forked from hoprnet/hoprnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.prettierignore
78 lines (64 loc) · 1.32 KB
/
.prettierignore
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# build
build/
lib/
dist/
docs/hips
docs/yellowpaper
docs/hopr-documentation/build
docs/hopr-documentation/.docusaurus
packages/*/build/
packages/*/dist/
packages/*/lib/
packages/*/docs
.vercel/
.yarn/
.next/
node_modules/
packages/*/node_modules/
# ignore cargo metadata
/.cargo/
# ignore generated wasm crate files
/packages/*/crates/*/pkg/package.json
# Conflicts with dappnode tool
packages/avado/dappnode_package.json
packages/avado/releases.json
# generated by packages/ethereum
packages/ethereum/contracts/broadcast
packages/ethereum/contracts/build-info
packages/ethereum/contracts/out
packages/ethereum/contracts/cache
packages/ethereum/contracts/report
# Compiled rust code cache
target/
target-install/
# Ignore WebAssembly
*.wasm
# prettier breaks scss
*.scss
# Breaks github actions with recursive commits
.github
# Yarn - conflict with yarn builtin linter
.yarnrc.yaml
# do not lint vendored source files
vendor/
# direnv cache files
.direnv/
# ignore file generated by TSC
/packages/**/*.*.map
/packages/**/*.*.*.map
/packages/**/*.js
/packages/**/*.d.ts
/packages/**/*.mts
/packages/**/*.mjs
/packages/**/*.cts
/packages/**/*.cjs
/scripts/**/*.*.map
/scripts/**/*.*.*.map
/scripts/**/*.js
/scripts/**/*.d.ts
/scripts/**/*.mts
/scripts/**/*.mjs
/scripts/**/*.cts
/scripts/**/*.cjs
!/packages/hoprd/src/main.cts
/.venv/