The Wayback Machine - https://web.archive.org/web/20220604165254/https://github.com/topics/linter-plugin
Here are
68 public repositories
matching this topic...
Simple Python style checker in one Python file
Updated
May 30, 2022
Python
This linter plugin for SublimeLinter provides an interface to ESLint
Updated
Dec 9, 2021
Python
A collection of SCSS specific linting rules for Stylelint
Updated
Jun 3, 2022
JavaScript
A plugin for Flake8 finding likely bugs and design problems in your program. Contains warnings that don't belong in pyflakes and pycodestyle.
Updated
May 24, 2022
Python
McCabe complexity checker for Python
Updated
May 17, 2022
Python
Naming Convention checker for Python
Updated
Jun 2, 2022
Python
Flake8 plugin that checks import order against various Python Style Guides
Updated
Apr 1, 2022
Python
Analyzer: checks whether HTTP response body is closed and a re-use of TCP connection is not blocked.
Collection of awesome rules to extend TSLint
Updated
Jun 1, 2020
TypeScript
A tool for measuring Python class cohesion.
Updated
Aug 5, 2019
Python
SublimeLinter 3 plugin for html tidy.
Updated
Jan 25, 2021
Python
A plugin for flake8 integrating Mypy.
Updated
Jun 19, 2020
Python
Disallow property values that are ignored due to another property value in the same rule.
Updated
Apr 8, 2022
JavaScript
Stylelint rule for preventing the use of low performance animation and transition properties.
Updated
May 16, 2022
JavaScript
A collection of React Native specific linting rules for stylelint (in a form of a plugin).
Updated
Apr 8, 2022
JavaScript
Android Annotation Processing Library to generate your adapters only with Annotations on your model, support working with Kapt and KSP Processors
Updated
Apr 15, 2022
Kotlin
Highlights lint, deltas and recent changes against git repo in Xcode 9
Updated
Sep 13, 2017
Objective-C
ESLint plugin to parse and lint BrightScript files
Updated
Apr 28, 2022
TypeScript
A plugin for Flake8 that provides specializations for type hinting stub files
Updated
Jun 2, 2022
Python
SublimeLinter plugin for English prose, using write-good.
Updated
May 3, 2020
Python
✏️ ESLint Plugin: enforce snake_case syntax on variables and function names
Updated
May 4, 2021
JavaScript
This linter plugin for SublimeLinter provides an interface to gotype.
Updated
Jul 26, 2019
Python
ansible-lint linter for atom
Updated
Mar 30, 2022
JavaScript
A Flake8 plugin to catch common issues on Scrapy spiders
Updated
Apr 11, 2022
Python
Stylelint rule for setting minimum and maximum constraint value for z-index.
Updated
Apr 8, 2022
JavaScript
This linter plugin for SublimeLinter provides an interface to gcc or other gcc-like (cross-)compiler.
Updated
Nov 16, 2021
Python
Stylelint plugin to convert HEX colors to either RGB or HSL
Updated
Nov 2, 2020
JavaScript
This linter plugin for SublimeLinter provides an interface to iverilog (verilog compiler).
Updated
Nov 24, 2020
Python
Improve this page
Add a description, image, and links to the
linter-plugin
topic page so that developers can more easily learn about it.
Curate this topic
Add this topic to your repo
To associate your repository with the
linter-plugin
topic, visit your repo's landing page and select "manage topics."
Learn more
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.
Single-line
rescueexpressions swallow all exceptions, returning the argument to therescue.It's a relatively common mistake to put an exception as the argument, mistakingly assuming that it will rescue from that exception alone, rather than all exceptions.
See the example below.