Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork2.8k
feat(parser): always enable comment, loc, range, tokens#8617
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
feat(parser): always enable comment, loc, range, tokens#8617
Uh oh!
There was an error while loading.Please reload this page.
Conversation
Thanks for the PR,@JoshuaKGoldberg! typescript-eslint is a 100% community driven project, and we are incredibly grateful that you are contributing to that community. The core maintainers work on this in their personal time, so please understand that it may not be possible for them to review your work immediately. Thanks again! 🙏Please, if you or your company is finding typescript-eslint valuable, help us sustain the project by sponsoring it transparently onhttps://opencollective.com/typescript-eslint. |
netlifybot commentedMar 7, 2024 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
✅ Deploy Preview fortypescript-eslint ready!
To edit notification comments on pull requests, go to yourNetlify site configuration. |
nx-cloudbot commentedMar 7, 2024 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
programs?: Program[] | null; | ||
project?: string[] | string | boolean | null; | ||
projectFolderIgnoreList?: (RegExp | string)[]; | ||
range?: boolean; | ||
projectFolderIgnoreList?: string[]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
I haven't verified yet (typescript-eslint/examples#9), but it looks to me like we never actually supported theRegExp
case?
typescript-eslint/packages/typescript-estree/src/parseSettings/resolveProjectList.ts
Lines 57 to 65 ind816496
constprojectFolderIgnoreList=( | |
options.projectFolderIgnoreList??['**/node_modules/**'] | |
) | |
.reduce<string[]>((acc,folder)=>{ | |
if(typeoffolder==='string'){ | |
acc.push(folder); | |
} | |
returnacc; | |
},[]) |
codecovbot commentedMar 8, 2024 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@## v8 #8617 +/- ##==========================================+ Coverage 87.33% 87.98% +0.64%========================================== Files 387 397 +10 Lines 13024 13881 +857 Branches 3771 4086 +315 ==========================================+ Hits 11375 12213 +838- Misses 1358 1368 +10- Partials 291 300 +9
Flags with carried forward coverage won't be shown.Click here to find out more.
|
571bb9d
intotypescript-eslint:v8Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
BREAKING CHANGE: Changes opt-in options from
@typescript-eslint/parser
to always-on.PR Checklist
Overview
Hardcodes those values to
true
inparser
, and sets up the types so that generated ASTs always have thecomment
,range
, andtokens
.Note that this doesn't change the values in
typescript-estree
. That package still has the genericAST
type with conditional types on'comment'
and'token'
.Adds some more unit tests while I'm in the area.
Co-authored-by:@bradzacher
💖