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