This website requires JavaScript.
Explore
Help
Sign in
foster
/
deno
Watch
0
Star
0
Fork
You've already forked deno
0
mirror of
https://github.com/denoland/deno.git
synced
2025-03-04 18:12:59 -05:00
Code
Issues
Packages
1
Wiki
Activity
2a803fe2de
deno
/
tests
/
specs
/
lint
/
lint_plugin_multiple_fixes
/
main.ts
3 lines
59 B
TypeScript
Raw
Normal View
History
Unescape
Escape
feat(unstable): add js lint plugin source code helpers (#28065) This PR adds a part of the `SourceCode` API in eslint (see https://eslint.org/docs/latest/extend/custom-rules#applying-fixes) . It's used to get the text of the current node, etc.
2025-02-13 13:19:55 +01:00
const
value
=
"unfixed🚧⚡
️
🚵"
;
feat(unstable): support multiple fixes from lint plugins (#28040) This PR supports returning multiple changes from a lint fix. It works the same way as eslint, see https://eslint.org/docs/latest/extend/custom-rules#applying-fixes . - Return a single fix - Return an array of fixes - Return a generator function with fixes
2025-02-11 15:24:28 +01:00
console
.
log
(
value
)
;
Copy permalink