forked from micropython/micropython
-
Notifications
You must be signed in to change notification settings - Fork 167
/
.gitignore
69 lines (57 loc) · 1020 Bytes
/
.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
62
63
64
65
66
67
68
69
# Compiled Sources
###################
*.o
*.a
*.elf
*.bin
*.map
*.hex
*.dis
*.exe
lextab.py
yacctab.py
# Packages
############
# Logs and Databases
######################
*.log
# VIM Swap Files
######################
*.swp
*.swo
*.swn
*.swi
*.swj
*.swk
*.swl
*.swm
# VIM Session Files
######################
Session.vim
# CTags files
######################
tags
TAGS
######################
# This .gitignore file is intended to be minimal.
#
# If you find that you need additional rules, such as IDE temporary
# files, please do so either via a global .gitignore file (registered
# with core.excludesFile), or by adding private repository-specific
# rules to .git/info/exclude. See https://git-scm.com/docs/gitignore
# for more information.
# Build directories
build/
build-*/
docs/genrst/
# Test failure outputs
tests/results/*
# Python cache files
__pycache__/
# Customized Makefile/project overrides
GNUmakefile
user.props
ports/javascript/node_modules
.vscode/
# MacOS desktop metadata files
.DS_Store