All Projects → fnando → vscode-linter

fnando / vscode-linter

Licence: MIT license
Extension for code linting, all in one package. New linters can be easily added through an extension framework.

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language
PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to vscode-linter

spec
🐣 easy to use eslint/stylelint/tslint/prettier/...
Stars: ✭ 60 (+27.66%)
Mutual labels:  stylelint, linter
vscode-stylelint-plus
A Visual Studio Code extension to lint CSS/SCSS/Less with stylelint, support auto fix on save.
Stars: ✭ 32 (-31.91%)
Mutual labels:  stylelint, linter
lints
Lint all your JavaScript, CSS, HTML, Markdown and Dockerfiles with a single command
Stars: ✭ 14 (-70.21%)
Mutual labels:  stylelint, linter
tryceratops
A linter to prevent exception handling antipatterns in Python (limited only for those who like dinosaurs).
Stars: ✭ 381 (+710.64%)
Mutual labels:  stylelint, linter
Stylelint Processor Styled Components
Lint your styled components with stylelint!
Stars: ✭ 639 (+1259.57%)
Mutual labels:  stylelint, linter
Rubocop
A Ruby static code analyzer and formatter, based on the community Ruby style guide.
Stars: ✭ 11,593 (+24565.96%)
Mutual labels:  rubocop, linter
sonar-css-plugin
SonarQube CSS / SCSS / Less Analyzer
Stars: ✭ 46 (-2.13%)
Mutual labels:  stylelint, linter
Rubocop Performance
An extension of RuboCop focused on code performance checks.
Stars: ✭ 340 (+623.4%)
Mutual labels:  rubocop, linter
Vscode Stylelint
A Visual Studio Code extension to lint CSS/SCSS/Less with stylelint
Stars: ✭ 260 (+453.19%)
Mutual labels:  stylelint, linter
elint
A easy way to lint your code
Stars: ✭ 38 (-19.15%)
Mutual labels:  stylelint, linter
Policial
Review pull requests for style guide violations
Stars: ✭ 36 (-23.4%)
Mutual labels:  rubocop, linter
Lint Staged
🚫💩 — Run linters on git staged files
Stars: ✭ 9,492 (+20095.74%)
Mutual labels:  stylelint, linter
Rubocop Packaging
A RuboCop extension focused on enforcing upstream best practices and coding conventions.
Stars: ✭ 29 (-38.3%)
Mutual labels:  rubocop, linter
Husky.Net
Git hooks made easy with Husky.Net internal task runner! 🐶 It brings the dev-dependency concept to the .NET world!
Stars: ✭ 394 (+738.3%)
Mutual labels:  stylelint, linter
Rubocop Rails
A RuboCop extension focused on enforcing Rails best practices and coding conventions.
Stars: ✭ 433 (+821.28%)
Mutual labels:  rubocop, linter
EditorConfig-Action
🔎A GitHub Action to check, enforce & fix EditorConfig style violations
Stars: ✭ 40 (-14.89%)
Mutual labels:  stylelint, linter
jetrockets-standard
Standard RuboCop configuration for JetRockets with cookies
Stars: ✭ 14 (-70.21%)
Mutual labels:  rubocop, linter
Lint Review
An automated code linting bot that integrates various code lint tools with github pull requests.
Stars: ✭ 279 (+493.62%)
Mutual labels:  rubocop, linter
stylelint-processor-glamorous
💄 Lint glamorous and related css-in-js with stylelint
Stars: ✭ 18 (-61.7%)
Mutual labels:  stylelint, linter
Flake8
The official GitHub mirror of https://gitlab.com/pycqa/flake8
Stars: ✭ 1,112 (+2265.96%)
Mutual labels:  stylelint, linter

Linter
Extension for code linting, all in one package.

VSCode Marketplace Installs Linter Version

Linter in Action

Extension for code linting, all in one package. New linters can be easily added through an extension framework.

Supports out of the box:

Features:

  • Implement new linters easily with just a few lines of code.
  • Ignore rules (end-of line, file, or current line).
  • Fix files (depends on linter's support).
  • Add links to rule's documentation.
  • Linters are lazy loaded, so you won't waste computer memory with linters you don't use.

Usage

Install the extension by visiting https://marketplace.visualstudio.com/items?itemName=fnando.linter or searching for fnando.linter.

Linter will use the binary that's on your $PATH; if your file is not being linted, check the "linter" output panel for additional information.

Output panel

You can tweak your linters configuration by editing only the nodes you need; for instance, to disable a linter, all you need is something like this:

{
  "linter.linters": {
    "ruby": {
      "enabled": false
    }
  }
}

Development

License

Copyright © 2021 Nando Vieira

MIT License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].