Skip to content

Commit 15dfe93

Browse files
author
Shekhar Suman
committed
Restore .gitignore (undo accidental deletion)
1 parent 851ecf4 commit 15dfe93

1 file changed

Lines changed: 122 additions & 0 deletions

File tree

.gitignore

Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
# ScanCode special files
2+
/SCANCODE_DEV_MODE
3+
4+
# Python compiled files
5+
*.py[cod]
6+
7+
# do not commit thirdparty cache of wheels
8+
/thirdparty
9+
10+
# virtualenv and other misc bits
11+
/src/*.egg-info
12+
*.egg-info
13+
!tests/packagedcode/data/pypi/source-package/pip-22.0.4/src/pip.egg-info
14+
!tests/packagedcode/data/pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery/celery.egg-info
15+
/dist
16+
/build
17+
/bin
18+
/lib
19+
/scripts
20+
/Scripts
21+
/Lib
22+
/pip-selfcheck.json
23+
/tmp
24+
/venv
25+
.Python
26+
/include
27+
/Include
28+
/local
29+
*/local/*
30+
/local/
31+
/share/
32+
/tcl/
33+
/.eggs/
34+
35+
# Installer logs
36+
pip-log.txt
37+
38+
# Unit test / coverage reports
39+
.cache
40+
.coverage
41+
.coverage.*
42+
nosetests.xml
43+
htmlcov
44+
45+
# Translations
46+
*.mo
47+
48+
# IDEs
49+
.project
50+
.pydevproject
51+
.idea
52+
org.eclipse.core.resources.prefs
53+
.vscode
54+
.vs
55+
56+
# Sphinx
57+
docs/_build
58+
docs/bin
59+
docs/build
60+
docs/include
61+
docs/Lib
62+
doc/pyvenv.cfg
63+
pyvenv.cfg
64+
65+
# Various junk and temp files
66+
.DS_Store
67+
*~
68+
.*.sw[po]
69+
.build
70+
.ve
71+
*.bak
72+
/.cache/
73+
74+
# test files that should not be ignored
75+
!/tests/typecode/data/contenttype/compiled/java/*
76+
!/tests/typecode/data/contenttype/compiled/python/*
77+
!/tests/typecode/data/contenttype/compiled/flash/*
78+
!/tests/typecode/data/contenttype/compiled/linux/*
79+
!/tests/typecode/data/contenttype/compiled/win/*
80+
!/tests/typecode/data/contenttype/package/*
81+
82+
# pyenv
83+
/.python-version
84+
/man/
85+
/.pytest_cache/
86+
lib64
87+
tcl
88+
/.env
89+
90+
# Ignore Jupyter Notebook related temp files
91+
.ipynb_checkpoints/
92+
93+
*.orig
94+
/release*
95+
/00-*.txt
96+
/z-todo-licenses-*
97+
98+
# Extra ignores from licensedb
99+
*.pyc
100+
*.db
101+
.installed.cfg
102+
parts
103+
develop-eggs
104+
eggs
105+
downloads
106+
.settings
107+
TAGS
108+
Procfile
109+
local.cfg
110+
geckodriver.log
111+
.metaflow
112+
selenium
113+
/dist/
114+
115+
# Ignore extra rpmdb sqlite stuff
116+
rpmdb.sqlite-*
117+
/.ruff_cache/
118+
.env
119+
120+
# Ignore gibberish detector model, this is trained on configure and build and
121+
# should not be committed
122+
gib_model.pki

0 commit comments

Comments
 (0)