Add my files to gitignore
[kconfig-hardened-check.git] / .gitignore
1 # Byte-compiled / optimized / DLL files
2 my/
3 __pycache__/
4 *.py[cod]
5 *$py.class
6
7 # Distribution / packaging
8 .Python
9 build/
10 develop-eggs/
11 dist/
12 downloads/
13 eggs/
14 .eggs/
15 lib/
16 lib64/
17 parts/
18 sdist/
19 var/
20 wheels/
21 pip-wheel-metadata/
22 share/python-wheels/
23 *.egg-info/
24 .installed.cfg
25 *.egg
26 MANIFEST
27
28 # PyInstaller
29 #  Usually these files are written by a python script from a template
30 #  before PyInstaller builds the exe, so as to inject date/other infos into it.
31 *.manifest
32 *.spec
33
34 # Installer logs
35 pip-log.txt
36 pip-delete-this-directory.txt
37
38 # Unit test / coverage reports
39 htmlcov/
40 .tox/
41 .nox/
42 .coverage
43 .coverage.*
44 .cache
45 nosetests.xml
46 coverage.xml
47 *.cover
48 *.py,cover
49 .hypothesis/
50 .pytest_cache/
51
52 # Translations
53 *.mo
54 *.pot
55
56 # Django stuff:
57 *.log
58 local_settings.py
59 db.sqlite3
60 db.sqlite3-journal
61
62 # Flask stuff:
63 instance/
64 .webassets-cache
65
66 # Scrapy stuff:
67 .scrapy
68
69 # Sphinx documentation
70 docs/_build/
71
72 # PyBuilder
73 target/
74
75 # Jupyter Notebook
76 .ipynb_checkpoints
77
78 # IPython
79 profile_default/
80 ipython_config.py
81
82 # pyenv
83 .python-version
84
85 # pipenv
86 #   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
87 #   However, in case of collaboration, if having platform-specific dependencies or dependencies
88 #   having no cross-platform support, pipenv may install dependencies that don't work, or not
89 #   install all needed dependencies.
90 #Pipfile.lock
91
92 # PEP 582; used by e.g. github.com/David-OConnor/pyflow
93 __pypackages__/
94
95 # Celery stuff
96 celerybeat-schedule
97 celerybeat.pid
98
99 # SageMath parsed files
100 *.sage.py
101
102 # Environments
103 .env
104 .venv
105 env/
106 venv/
107 ENV/
108 env.bak/
109 venv.bak/
110
111 # Spyder project settings
112 .spyderproject
113 .spyproject
114
115 # Rope project settings
116 .ropeproject
117
118 # mkdocs documentation
119 /site
120
121 # mypy
122 .mypy_cache/
123 .dmypy.json
124 dmypy.json
125
126 # Pyre type checker
127 .pyre/
128
129 # vim swp files
130 .*.swp