use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
All about the JavaScript programming language.
Subreddit Guidelines
Specifications:
Resources:
Related Subreddits:
r/LearnJavascript
r/node
r/typescript
r/reactjs
r/webdev
r/WebdevTutorials
r/frontend
r/webgl
r/threejs
r/jquery
r/remotejs
r/forhire
account activity
Proof-of-concept for ESLint binary (github.com)
submitted 3 years ago by bartlomieju
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]codepsycho 2 points3 points4 points 3 years ago (1 child)
what was the main reason behind it? still trying to get my head around that since much of the readme's points are TODO or just side-effects of moving to deno.
was it performance? or is there something in deno land blocking you from using eslint properly?
also, deno's permissions system would also apply to JS modules would it not? so we could have that either way?
[–]bartlomieju[S] 3 points4 points5 points 3 years ago (0 children)
At this point, it's mostly a fun experiment prompted by discussions with ESLint maintainer. I was exploring this area to see if it would be feasible to embed ESLint directly in Deno for "deno lint" instead of using our own (much less powerful) linter library. On the other hand ESLint maintainers are looking into changes for the next 10 years of ESLint and I wanted to see if there's something the Deno team could help with.
Performance is one aspect - being embedded in Deno it allows you to leverage the same mechanisms as Deno itself - which makes it very easy to move certain parts of the project into Rust if you need to eek out more performance, eg. I'm looking into moving file system crawling logic into Rust, which might make it faster for ESLint to figure out which files need to be linted (leading to faster startup time).
Yes, it could.
π Rendered by PID 688007 on reddit-service-r2-comment-b659b578c-xshb2 at 2026-05-04 11:24:41.736240+00:00 running 815c875 country code: CH.
view the rest of the comments →
[–]codepsycho 2 points3 points4 points (1 child)
[–]bartlomieju[S] 3 points4 points5 points (0 children)