Linux Foundation Administrators | 5cc077e | 2018-01-24 08:27:38 -0800 | [diff] [blame] | 1 | # Ignore Mac temp files |
2 | .DS_Store | ||||
3 | |||||
4 | # Ignore Vim temporary files | ||||
5 | .*.sw? | ||||
6 | |||||
7 | # Ignore changes to the JJB Configuration File | ||||
8 | jenkins.ini | ||||
9 | |||||
10 | # We don't want .netrc files since they're credential files | ||||
11 | .netrc | ||||
12 | |||||
13 | # Maven | ||||
14 | target/ | ||||
15 | |||||
16 | # Vagrant | ||||
17 | .vagrant | ||||
18 | |||||
19 | # IntelliJ | ||||
20 | .idea/ | ||||
21 | *.iml | ||||
22 | |||||
23 | # Eclipse | ||||
24 | .project | ||||
25 | /.pydevproject | ||||
26 | |||||
27 | # Python | ||||
28 | .tox/ | ||||
29 | __pycache__/ | ||||
30 | *.pyc | ||||
31 | |||||
Zack Williams | c2140b9 | 2018-04-05 09:19:22 -0700 | [diff] [blame] | 32 | # jjb local testing |
Joey Armstrong | f320860 | 2023-06-03 15:12:23 -0400 | [diff] [blame] | 33 | .venv |
Zack Williams | c2140b9 | 2018-04-05 09:19:22 -0700 | [diff] [blame] | 34 | venv-jjb |
35 | job-configs | ||||
36 | |||||
Joey Armstrong | 775a20f | 2022-12-02 12:55:43 -0500 | [diff] [blame] | 37 | # npm-groovy-lint |
38 | node_modules/ | ||||
39 | package-lock.json | ||||
40 | package.json | ||||
41 | |||||
Joey Armstrong | f320860 | 2023-06-03 15:12:23 -0400 | [diff] [blame] | 42 | # Generated pipeline jobs |
43 | build/ | ||||
44 | |||||
Joey Armstrong | 7ba23ac | 2023-08-29 15:21:53 -0400 | [diff] [blame] | 45 | # make test residue |
46 | a.out | ||||
47 | archives/ | ||||
48 | |||||
Joey Armstrong | 775a20f | 2022-12-02 12:55:43 -0500 | [diff] [blame] | 49 | # [EOF] |