-
Updated
Jan 30, 2022 - Vim script
linters
Here are 144 public repositories matching this topic...
-
Updated
Feb 14, 2022 - Lua
-
Updated
Feb 9, 2022 - Go
-
Updated
Jan 25, 2022 - Ruby
-
Updated
Feb 7, 2022
-
Updated
Nov 23, 2021 - Ruby
-
Updated
Feb 13, 2022 - Go
-
Updated
Feb 14, 2022 - Python
-
Updated
Feb 11, 2022 - Python
if you run todocheck help instead of todocheck --help instead of getting an error, you'll get the usual app run.
In this case, some error should show up instead.
-
Updated
Jan 30, 2022 - TypeScript
-
Updated
Jan 23, 2022 - Shell
Hi, EditorConfig Checker Workgroup:
I hope add .ecrc file json schema definition to SchemaStore registry
provide the configuration file code suggestion for IDE or editor.
-
Updated
Feb 13, 2022 - Python
-
Updated
May 17, 2017 - Vim script
-
Updated
Jan 13, 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
Jan 29, 2022
-
Updated
Oct 18, 2021 - Kotlin
-
Updated
Jul 13, 2020 - TypeScript
-
Updated
Feb 1, 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
Jan 16, 2022 - Python
-
Updated
Dec 11, 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