Add a description to all common functions
This commit is contained in:
3
Makefile
3
Makefile
@@ -25,9 +25,10 @@ ci-dependencies: shellcheck bats
|
||||
lint:
|
||||
# these are disabled due to their expansive existence in the codebase. we should clean it up though
|
||||
# SC1090: Can't follow non-constant source. Use a directive to specify location.
|
||||
# SC2034: Variable appears unused. Verify it or export it.
|
||||
# SC2155: Declare and assign separately to avoid masking return values.
|
||||
@echo linting...
|
||||
@$(QUIET) find ./ -maxdepth 1 -not -path '*/\.*' | xargs file | egrep "shell|bash" | awk '{ print $$1 }' | sed 's/://g' | xargs shellcheck -e SC1090,SC2155
|
||||
@$(QUIET) find ./ -maxdepth 1 -not -path '*/\.*' | xargs file | egrep "shell|bash" | awk '{ print $$1 }' | sed 's/://g' | xargs shellcheck -e SC1090,SC2034,SC2155
|
||||
|
||||
unit-tests:
|
||||
@echo running unit tests...
|
||||
|
||||
Reference in New Issue
Block a user