I want to know what files have been linted and what files have not, this way we can see if we have 100% linting coverage.
This would prevent files being commited of unknown file types, as well as .
It is important that linters don't normally use a wildcard glob pattern (**/*) to lint files, it should be based on file extension pattern. Wildcard linters such as lint-mimesniff should be treated separately and should not count towards 100% coverage.
I want to know what files have been linted and what files have not, this way we can see if we have 100% linting coverage.
This would prevent files being commited of unknown file types, as well as .
It is important that linters don't normally use a wildcard glob pattern (
**/*
) to lint files, it should be based on file extension pattern. Wildcard linters such aslint-mimesniff
should be treated separately and should not count towards 100% coverage.