Syntax checking hacks for vim
-
Updated
Jul 6, 2022 - Vim script
{{ message }}
Syntax checking hacks for vim
An IDE layer for Neovim with sane defaults. Completely free and community driven.
Staticcheck - The advanced Go linter
Code smell detector for Ruby
An attempt to make Unreal Engine 4 projects more consistent
Quick automated code review of your changes
A compiler for APIs described by the OpenAPI Specification with plugins for code generation and other API support tasks.
Is there anyway through configuration that you can have the report directory cleared before each run?
linear.app is a modern, pretty cool issue tracker which shouldn't be too difficult to integrate with. Pretty good first issue.
Community maintained ansible-lint Github Action
The artifact archive file has the arch in the name already, which is duplicated with the binary inside and requires a rename to make the executable just ec on each platform. Please, consider removing the duplication! I am using a growing in popularity tool called eget, which safely installs binaries from GitHub and other places, but it cannot cleanly install `
Opinionated Next JS 12 project boilerplate with TypeScript and Redux
A formatter for finding and removing unused import statements.
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.
An unofficial collection of different linter and formatter configurations for diagnostic-languageserver used for built-in nvim-lsp
Experimental support for detekt as a Kotlin compiler plugin
Staticcheck's official GitHub Action
Inline your lint messages
// 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.
An unofficial collection of linters and formatters configured for efm-langserver to work with the builtin nvim-lsp
Linter Config Initializer for Python
The leaderboard website displays scores submitted by different players. It also allows users to submit your score. Once scores are submitted, users can refresh the current dashboard to get updated scores.
Add a description, image, and links to the linters topic page so that developers can more easily learn about it.
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