-
Updated
Mar 23, 2022 - Vim script
linters
Here are 172 public repositories matching this topic...
-
Updated
Apr 18, 2022 - Lua
-
Updated
Apr 16, 2022 - Go
-
Updated
Apr 16, 2022 - Ruby
-
Updated
Mar 7, 2022
-
Updated
Apr 15, 2022 - Ruby
-
Updated
Apr 17, 2022 - Go
-
Updated
Apr 18, 2022 - Python
-
Updated
Apr 14, 2022 - Python
linear.app is a modern, pretty cool issue tracker which shouldn't be too difficult to integrate with. Pretty good first issue.
-
Updated
Apr 5, 2022 - TypeScript
-
Updated
Apr 14, 2022
-
Updated
Apr 15, 2022 - Python
-
Updated
Mar 5, 2022 - Lua
Publish Docker Image
It will be great to have a docker image that one can run locally or in CI instead of needing to install/download a binary.
-
Updated
Apr 4, 2022
-
Updated
Oct 18, 2021 - Kotlin
-
Updated
Jul 13, 2020 - TypeScript
-
Updated
Apr 15, 2022 - XSLT
// makeExample replaces all ${linter} placeholders to a bound linter name.The code below does not use ${linter} anywhere.
I could remove this, but would also like to avoid doing several unrelated things on the same PR, so keeping it as an issue to avoid forgetting about it.
-
Updated
Mar 9, 2022 - Python
-
Updated
Dec 11, 2021 - JavaScript
-
Updated
Mar 16, 2022 - Lua
-
Updated
Dec 25, 2021 - JavaScript
Improve this page
Add a description, image, and links to the linters topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the linters topic, visit your repo's landing page and select "manage topics."
It would be great to have a lint rule to flag when
trueorfalseis passed to a function.As a solution the problem of a vague true/false value passed to a function, the "boolean trap", I have a habit of creating a self-documenting constant and using that instead.
Instead of
redraw(true), I'll defineconst INLINE = true;and then useredraw(INLINE);.Thanks for considering this