Skip to content
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

correct resolution of lint extends packages #309

Merged
merged 4 commits into from
Feb 28, 2019

Conversation

43081j
Copy link
Member

@43081j 43081j commented Jan 28, 2019

There's currently a bug in master in that extending plugin:@scope/name should result in @scope/eslint-plugin but we incorrectly resolve it as @scope/eslint-plugin-name or some such thing.

In this PR, I have removed most of what logic we had around extends and (like ESLint does its self) have used the normalisation function I recently introduced.

I also removed a bunch TSLint tests, because TSLint only supports loading inherited configs by node resolution (it just does a require on it). Because of this, I had to add a short-circuit in the resolution function to return the path as-is for tslint.

cc @rumpl

@codecov
Copy link

codecov bot commented Jan 28, 2019

Codecov Report

Merging #309 into master will decrease coverage by 0.37%.
The diff coverage is 100%.

Impacted file tree graph

@@            Coverage Diff             @@
##           master     #309      +/-   ##
==========================================
- Coverage   98.39%   98.01%   -0.38%     
==========================================
  Files          32       32              
  Lines         561      555       -6     
==========================================
- Hits          552      544       -8     
- Misses          9       11       +2
Impacted Files Coverage Δ
src/utils/linters.js 96.42% <100%> (-3.58%) ⬇️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update aab8370...e937b5f. Read the comment docs.

@codecov
Copy link

codecov bot commented Jan 28, 2019

Codecov Report

Merging #309 into master will increase coverage by <.01%.
The diff coverage is 100%.

Impacted file tree graph

@@            Coverage Diff            @@
##           master    #309      +/-   ##
=========================================
+ Coverage   98.39%   98.4%   +<.01%     
=========================================
  Files          32      32              
  Lines         561     563       +2     
=========================================
+ Hits          552     554       +2     
  Misses          9       9
Impacted Files Coverage Δ
src/utils/linters.js 100% <100%> (ø) ⬆️
src/special/eslint.js 100% <100%> (ø) ⬆️
src/special/tslint.js 100% <100%> (ø) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update f424860...8786f56. Read the comment docs.

src/utils/linters.js Outdated Show resolved Hide resolved
@43081j
Copy link
Member Author

43081j commented Jan 28, 2019

tests currently fail because './config' in the tslint tests results in a dependency of .. i'm not sure if this is expected or why it happens, some help would be useful there

@rumpl
Copy link
Member

rumpl commented Jan 28, 2019

Hey, thanks for this, I'll take a look at it tomorrow, it's late here now.

Thanks for contributing 🎉🎉🕺🎉🎉

src/utils/linters.js Outdated Show resolved Hide resolved
@43081j
Copy link
Member Author

43081j commented Jan 31, 2019

alright here we go.

tslint config is really really simple, it turns out we were implementing a whole bunch of stuff tslint doesn't even support. the only thing it supports is extends with a module or path really.

so i went ahead and split it out into its own implementation.

the tests have been cleaned up to be accurate to what tslint actually has too.

@rumpl
Copy link
Member

rumpl commented Jan 31, 2019

Dude, <3

Thank you :)

@rumpl
Copy link
Member

rumpl commented Jan 31, 2019

Would you like to be part of the “core team”?

@43081j
Copy link
Member Author

43081j commented Jan 31, 2019

Sure, if you'd like. Would be happy to have a stab at some other issues when i'm free if needed.

& no worries, let me know if there's anymore changes needed

.map(preset => resolvePresetPackage(preset, rootDir))
.filter(preset => !path.isAbsolute(preset))
.map(requirePackageName);
}

export default function parseTSLint(content, filename, deps, rootDir) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i added jsdoc linking to the docs instead as it explains there in friendlier terms what resolution is used.

@@ -11,36 +11,20 @@ const testCases = [
expected: [],
},
{
name: 'detect specific plugins',
name: 'skip single built-in config',
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I suppose the second one have covered this. We can remove this one.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is to test that you can use extends: 'foo' rather than an array, extends: ['foo']. so i think we should leave it here?

'tslint:recommended',
'tslint:latest',
'tslint:foo',
],
},
expected: [],
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am thinking about if we should declare tslint in expected array. I am not sure if there is a user case to declare the tslint.json but not script CLI command. I personally think it is worth to declare tslint here.

Copy link
Member Author

@43081j 43081j Feb 13, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

just to clarify, does this mean the tslint parser would return ['tslint'] if deps doesn't contain it already?

@lijunle
Copy link
Member

lijunle commented Feb 12, 2019

@43081j The changes look good! Thank you very much for the contribution! BTW, I have invited you to the team. Welcome!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants