Update lint.py filters and fix a couple identified issues
parent
3e26618004
commit
11222f21d3
@ -1,11 +1,32 @@
|
|||||||
|
# Files that lint.py should check
|
||||||
|
|
||||||
|
*.bash
|
||||||
|
*.bat
|
||||||
*.c
|
*.c
|
||||||
|
*.cc
|
||||||
|
*.cmake
|
||||||
*.cpp
|
*.cpp
|
||||||
|
*.css
|
||||||
|
*.gitignore
|
||||||
*.h
|
*.h
|
||||||
|
*.hh
|
||||||
*.hpp
|
*.hpp
|
||||||
|
*.in
|
||||||
|
*.inc
|
||||||
*.init
|
*.init
|
||||||
*.init-example
|
*.init-example
|
||||||
|
*.js
|
||||||
*.lua
|
*.lua
|
||||||
|
*.manifest
|
||||||
|
*.md
|
||||||
*.mm
|
*.mm
|
||||||
|
*.pl
|
||||||
*.proto
|
*.proto
|
||||||
|
*.py
|
||||||
*.rb
|
*.rb
|
||||||
*.rst
|
*.rst
|
||||||
|
*.sh
|
||||||
|
*.txt
|
||||||
|
*.vbs
|
||||||
|
*.yaml
|
||||||
|
*.yml
|
||||||
|
@ -1,8 +1,23 @@
|
|||||||
library/include/df/*
|
# Files that lint.py should ignore
|
||||||
plugins/stonesense/allegro/*
|
|
||||||
plugins/isoworld/allegro/*
|
|
||||||
plugins/isoworld/agui/*
|
|
||||||
depends/*
|
|
||||||
.git/*
|
.git/*
|
||||||
build*/*
|
|
||||||
|
# Old files exempt from checks for now
|
||||||
|
plugins/isoworld/*.txt
|
||||||
|
plugins/raw/*.txt
|
||||||
|
plugins/stonesense/*.txt
|
||||||
|
plugins/stonesense/utilities/*
|
||||||
|
|
||||||
|
# Generated files
|
||||||
*.pb.h
|
*.pb.h
|
||||||
|
build*/*
|
||||||
|
docs/_*
|
||||||
|
docs/html/*
|
||||||
|
docs/pdf/*
|
||||||
|
library/include/df/*
|
||||||
|
|
||||||
|
# Dependencies that we don't control
|
||||||
|
depends/*
|
||||||
|
plugins/isoworld/agui/*
|
||||||
|
plugins/isoworld/allegro/*
|
||||||
|
plugins/stonesense/allegro/*
|
||||||
|
Loading…
Reference in New Issue