Browse Source

maint: tweak .gitignore and remove redundant files

combine code/.gitignore and the one at the root of the repo

.bandit was part of codacy checks suite, current python code
should probably be updated to use either pylint directly and (/ or)
through the codeql python workflow
pull/2508/head
Maxim Prokhorov 2 years ago
parent
commit
988f566e7e
3 changed files with 18 additions and 30 deletions
  1. +0
    -3
      .bandit
  2. +18
    -12
      .gitignore
  3. +0
    -15
      code/.gitignore

+ 0
- 3
.bandit View File

@ -1,3 +0,0 @@
# Ignore B404 "Avoid importing subprocess"
# Ignore B603 "Subprocess without shell equals true"
skips: ['B404', 'B603']

+ 18
- 12
.gitignore View File

@ -1,19 +1,25 @@
*.s#?
*.b#?
.modgit
firmware*
*.gch
.pio*
*.py[cod]
*.s#?
.DS_Store
.clang_complete
.env
.gcc-flags.json
.sconsign.dblite
credentials.h
node_modules
code/utils
custom.h
.modgit
.pio
.python
.env
.DS_Store
.python-version
.sconsign.dblite
.vscode
.vscode/.browse.c_cpp.db*
.vscode/c_cpp_properties.json
.vscode/launch.json
_pycache_/
*.py[cod]
code/.cache/
code/espurna/config/custom.h
code/libraries/
code/node_modules
code/test/unit/cache
compile_commands.json
firmware*

+ 0
- 15
code/.gitignore View File

@ -1,15 +0,0 @@
.clang_complete
core_version.h
custom.h
.DS_Store
.gcc-flags.json
.python-version
.travis.yml
.vscode
.vscode/.browse.c_cpp.db*
.vscode/c_cpp_properties.json
.vscode/launch.json
.pio
test/unit/cache
libraries/
espurna/espurna.ino.cpp

Loading…
Cancel
Save