Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [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 | # Virtualenv | ||||
23 | python/venv-* | ||||
24 | |||||
25 | # Protobuf output files | ||||
26 | python/**/*_pb2.py | ||||
27 | python/**/*_pb2_grpc.py | ||||
28 | python/**/*.desc | ||||
29 | protos/**/*.pb.go | ||||
30 | protos/**/*.desc | ||||
31 | protos/voltha.pb | ||||
32 | |||||
33 | # Editors | ||||
34 | *.bak | ||||
35 | *.project | ||||
36 | *.pydevproject | ||||
37 | |||||
38 | # Docker | ||||
39 | .docker-base-built | ||||
40 | |||||
41 | # Mac stuff | ||||
42 | .DS_Store | ||||
43 | **/.DS_Store | ||||
44 | |||||
45 | # Generated docs | ||||
46 | |||||
47 | |||||
48 | # Vagrant logfile | ||||
49 | *.logo | ||||
50 | |||||
51 | # voltha cli history | ||||
52 | python/cli/.voltha_cli_history | ||||
53 | |||||
54 | python/local_imports/**/* | ||||
55 | |||||
56 | # test output | ||||
57 | tests/results | ||||
Girish Gowdra | 9447baf | 2019-11-05 16:42:37 +0530 | [diff] [blame] | 58 | |
59 | # sca-report | ||||
60 | sca-report |