File: .gitignore

package info (click to toggle)
dtfabric 20200621-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 796 kB
  • sloc: python: 5,238; sh: 138; makefile: 21
file content (26 lines) | stat: -rw-r--r-- 307 bytes parent folder | download | duplicates (3)
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
# Files to ignore by git.

# Back-up files
*~
*.swp

# Generic auto-generated build files
*.pyc
*.pyo

# Specific auto-generated build files
/.tox
/__pycache__
/build
/dtfabric.egg-info
/dist

# Code review files
/.review

# Type check files
/.mypy_cache

# Test coverage files
.coverage
tests-coverage.txt