lint/alias
All checks were successful
/ job (push) Successful in 2m57s

This commit is contained in:
Marc Beninca 2025-08-03 00:51:39 +02:00
parent 8dd3d52ebf
commit 98e1d1f939
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -136,6 +136,7 @@ current_function = ""
current_match = ""
doc = ""
line = 0
lint = ""
module = ""
}
@ -350,6 +351,11 @@ if (action == "doc") {
# TODO rwx_ function
# TODO unique alias
if (current_match == "alias") {
if (alias in aliases) {
print "dupe: " alias
}
}
# TODO unique command
# TODO unique function
@ -377,6 +383,10 @@ if (action == "filter") {
print item
}
# lint
} else if (action == "lint") {
print lint
# action
}