| Age | Commit message (Collapse) | Author |
|
The "share" project has been moved to SourceHut with new name
"pakakeh.go".
|
|
If a multi lines command does not have spaces or have multiple
spaces, join them as is.
For example,
a\
b
should return the value as "ab", while
a \
b
should return "a b".
|
|
This will allow us to build test binary that contains only "integration"
build constraints.
The test that have "integration" will be run using container.
|
|
With configuration we can enable or disable specific linters and
customize it without touching the Makefile.
While at it, enable linter presets for bugs, comment, metalinter,
module, performance, unused and fix the reported issues.
|
|
Replace ":=" with explicit variable declaration with types for clarity
and minimizing duplicate variables.
|
|
See https://kilabit.info/journal/2022/gpl for more information.
|
|
Previously the statement for #require: must be declared on the next line.
This changes deprecated the statement to be declared on the next line,
instead it must be on the same line as require itself.
|
|
Some enhancements and fixes,
* Trim the spaces on each statement before checking for continued line
* Trim the spaces on continued line
* Set the empty lines to nil, to minimize memory usage
|