-
Notifications
You must be signed in to change notification settings - Fork 23
/
.gitignore
61 lines (46 loc) · 1.06 KB
/
.gitignore
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
# avoid including micropython-stubber in workflows.
micropython-stubber
# no pytest / mypy / .... caches
.*_cache
**/__pycache__
# No venv
.venv*
#no secrets
.secrets*
# no documentation artefacts
*/~*.pptx
# no test files from frozen stubs
stubs/**/*_test.p*
# exclude ulab/user module to allow this to be stubbed on a specific firmware
stubs/micropython-ulab/ulab/user/__init__.pyi
docs/_build
#no test results
results
# no scratch pad
scratch
# no daughter repos
repos
micropython
micropython-lib
# The lines below will influence the contents of the -stub packages created with poetry
# poetry will exlude all .ignored files from the project
# stub folders that are copied to create the stub package
# publish/*/**/*.*
!publish/*/*.toml
!publish/*/*.md
publish/*/modules.json
publish/**/dist
publish/*/*.dist-info/*
!publish/*/*.dist-info/METADATA
# no typings
typings
# no firmware images
firmware
# no node modules
node_modules
package*.json
coverage/snippet_score.json
**/__NOT__
publish/micropython-stdlib-stubs_100b1
# no test lock files
**/*_lock.file