As is, the text linter is very restrictive. The only configuration setting is the max line length it checks for.
However, it also checks for the following, without providing configurability for different coding guidelines of other projects:
- UNIX newlines
- ASCII charset without CR (eliminating windows-style CRLF newlines again
- No tabs
- LF before EOF
- No trailing whitespace
- File-Leading whitespace
- File-Trailing whitespace
- no @nocommit
I would like the text linter to be more configurable, to allow a) different, and b) less restrictive rules.
And I would like to contribute some of those changes.