-
Is it possible to use this extension to fix autofixable problems?
-
Hi, not sure if I've read documentation wrong, if I've set it up wrong, or there's an actual issue with the plugin. I've been trying to get autofix to work but it's only showing that errors are there.…
-
Commonly, LSPs provide formatting capabilities (`documentFormattingProvider`).
For typos, it could be useful be able to autofix misspellings via LSP-formatting. Essentially what `typos --write-chan…
-
code: `assert x != 0`
ruff: 0.0.291
command: `ruff check --fix --fixable S101 .`
error: `S101 Use of `assert` detected`
This is an easy fix to substitute in the code specially when opted-in …
-
[D301](https://docs.astral.sh/ruff/rules/escape-sequence-in-docstring/) states that docstrings with literal backslashes should use raw (`r"""`) strings. So something like
def f():
"""…
-
```
Create a processor responsible for autofixing silly jshint errors, based on
this library: https://github.com/goatslacker/jshint-autofix
```
Original issue reported on code.google.com by `alex.ob…
-
```
Create a processor responsible for autofixing silly jshint errors, based on
this library: https://github.com/goatslacker/jshint-autofix
```
Original issue reported on code.google.com by `alex.ob…
-
---- from @denuno
That would be a pretty interesting thing to have in CFLint itself, actually, along with a mode where you could enable auto-fixing (or maybe auto-ignoring)... e.g. instead of just…
-
**Is your feature request related to a problem? Please describe.**
It would be really good for VSG to be able to automatically fix rules such as constant_015 i.e. prefix or suffix renaming rules. For…
imd1 updated
8 months ago
-
`String.startsWith()` and `String.includes()` were introduced in ES6 and are great. Very readable.
* [ ] Warn or error on `String.indexOf(a) !== -1`, suggest `String.includes()` instead
* [ ] …