Holger Hildebrandt | da7758b | 2020-03-16 11:30:03 +0000 | [diff] [blame] | 1 | # PyCharm |
2 | .idea | ||||
3 | exportToHTML | ||||
4 | |||||
5 | # Python | ||||
6 | *.pyc | ||||
7 | |||||
8 | # Emacs | ||||
9 | *~ | ||||
10 | .#* | ||||
11 | |||||
12 | # Vagrant | ||||
13 | .vagrant | ||||
14 | *.box | ||||
15 | |||||
16 | # Ansible | ||||
17 | ansible/*.retry | ||||
18 | |||||
19 | # Any vi swap files | ||||
20 | *.swp | ||||
21 | |||||
22 | # Editors | ||||
23 | *.bak | ||||
24 | *.project | ||||
25 | *.pydevproject | ||||
26 | |||||
27 | # Mac stuff | ||||
28 | .DS_Store | ||||
29 | **/.DS_Store | ||||
30 | |||||
31 | # Vagrant logfile | ||||
32 | *.log | ||||
33 | |||||
34 | # Virtualenv | ||||
35 | venv-* | ||||
36 | |||||
37 | # Development versions of locally built libraries | ||||
38 | python/local_imports | ||||
39 | |||||
40 | # test output | ||||
41 | tests/results | ||||
42 | |||||
43 | # SCA reports from run golangci-lint tool | ||||
44 | sca-report/ | ||||
Matteo Scandolo | bedd250 | 2020-03-25 08:44:18 -0700 | [diff] [blame] | 45 | |
46 | # go build | ||||
47 | openonu |