diff options
author | opensource-tnbt <sridhar.rao@spirent.com> | 2020-08-01 22:12:02 +0530 |
---|---|---|
committer | opensource-tnbt <sridhar.rao@spirent.com> | 2020-08-03 14:53:00 +0530 |
commit | 42af6fa2ef682d28d12952831aa0c74fd647daad (patch) | |
tree | 27f73a3410005b77be7b92352efe32fc1f05a662 /.gitignore | |
parent | d5a010aa2e40cafabf012b096f508b144f9d3d8b (diff) |
SDV: Reorganize subprojects
This patch reorganizes the subprojects.
Pylint Fixes. Additional Configurations
Signed-off-by: Sridhar K. N. Rao <sridhar.rao@spirent.com>
Change-Id: I021f33f035d7b2dcfded230ca40337afdac183e8
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..05a1aa0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,56 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*.confc + +# C extensions +*.so + +# Distribution / packaging +.Python +env/ +build/ +develop-eggs/ +dist/ +eggs/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.cache +nosetests.xml +coverage.xml + +# Translations +*.mo +*.pot + +# Log files: +*.log + +# Sphinx documentation + +# PyBuilder +target/ + +# SublimeText +*.sublime-project +*.sublime-workspace |