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

Add rule 'no-self-import' #727

Merged
merged 1 commit into from
Jan 4, 2018

Conversation

giodamelio
Copy link
Contributor

@giodamelio giodamelio commented Jan 22, 2017

Stops a file from importing itself. See #449 for details.

Progress:

  • Create rule
  • Write tests
  • Update docs
  • Add note in changelog
  • Squash the above into one nice commit(No sure if I should do this?)

A few questions

  • Is there any special way the error message should be written?
  • Should I include the name of the file in it?
  • Is it best practices to dynamically generate error messages based on the context?

Closes #449. Fixes #447.

@coveralls
Copy link

coveralls commented Jan 22, 2017

Coverage Status

Coverage increased (+0.04%) to 94.949% when pulling 411af62 on giodamelio:feature-no-self-import into b939718 on benmosher:master.

if (filePath === resolvedPath) {
context.report({
node,
// TODO: check in about message, should it print the name of the module itself
Copy link
Member

Choose a reason for hiding this comment

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

yes, i think it should - it's much more helpful that way. Ideally, it'd include the path to the file, and, if different, the path used in the import statement.


ruleTester.run('no-self-import', rule, {
valid: [
test({ code: 'import _ from "lodash"'}),
Copy link
Member

Choose a reason for hiding this comment

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

how can any of these valid examples be deemed such without a filename to test against?

It's probably good to keep all of these, to ensure that when there's no filename (like stdin input), the rule bails out, but these should include a filename explicitly.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Thanks, that makes sense, I don't totally grok the testing setup yet. I'll add that.

import isStaticRequire from '../core/staticRequire'

function isImportingSelf(context, node, requireName) {
const filePath = context.getFilename()
Copy link
Member

Choose a reason for hiding this comment

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

what happens when the input is from stdin, and thus there's no filename?

Copy link
Collaborator

Choose a reason for hiding this comment

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

Good catch! When that happens, filePath will equal '<text>. In some other plugin, we've handled it like: https://github.com/sindresorhus/eslint-plugin-unicorn/blob/master/rules/filename-case.js#L71-L73

Copy link
Member

Choose a reason for hiding this comment

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

That seems totally reasonable - it might also be useful to create a generic way to tag rules as "does not apply when the file is from stdin"

Copy link
Collaborator

Choose a reason for hiding this comment

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

I have actually never used the --stdin option and don't know the uses for it 🤔

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I didn't even know that was a thing you could do.

Copy link
Member

Choose a reason for hiding this comment

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

I use it all the time when providing reproduction steps for eslint bugs :-p

Copy link
Member

Choose a reason for hiding this comment

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

last I knew, Sublime uses --stdin, but with --stdin-filename (or something like that) to fake in the filename

Copy link
Collaborator

@jfmengels jfmengels left a comment

Choose a reason for hiding this comment

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

Thanks a lot @giodamelio, that was quick! 😄

Is there any special way the error message should be written?

We don't have a convention for error message in this plugin AFAIK. From what I see at a glance, most error messages end with a period (with some exceptions, but you might as well add it, I usually add it in other rules plugins) and start with an uppercase letter. As far as the content of the message, the clearer the better, but it should stay relatively short. The current message looks good to me, but if someone finds something better, 👍

Is it best practices to dynamically generate error messages based on the context?

If it helps the user understand and fix the error, sure.

Tests-wise, could you add the following cases:
valid:

  • filename is bar.js, code is importing ./bar/index.js
  • filename is bar/index.js, code is importing ./bar
    invalid:
  • filename is bar/index.js, code is importing ../bar/
  • filename is index.js, code is importing ./
  • filename is index.js, code is importing .
  • filename is index.js, code is importing ././././
  • filename is bar.js, code is importing ./bar.js

And more if you think of more (odd) cases.

context.report({
node,
// TODO: check in about message, should it print the name of the module itself
message: 'Module imports itself',
Copy link
Collaborator

Choose a reason for hiding this comment

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

should it print the name of the module itself

I think there is no need. If they see the error in the editor, they will already have the file open and see which file the error is for. If they see it in the terminal or a CI environment's terminal, ESLint will display the location of the file it is in.

Copy link
Member

Choose a reason for hiding this comment

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

That's true - but because resolution is being applied, it might not be immediately apparent which import path is pointing back to the file.

Copy link
Collaborator

Choose a reason for hiding this comment

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

ESLint will tell you on what line the import is, and in the editor, it will put red squiggly lines under the import statement / require call. That sounds sufficient to me, especially since (IMO) having the whole path to the file in the error message would probably make the error harder to read.

description: 'Prohibits a file from importing itself',
recommended: true,
},
fixable: 'code',
Copy link
Collaborator

Choose a reason for hiding this comment

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

Remove this line as the rule is not fixable.

@giodamelio
Copy link
Contributor Author

That should take care of the changes you guys requested.

@coveralls
Copy link

Coverage Status

Coverage increased (+0.04%) to 94.955% when pulling 5e133c0 on giodamelio:feature-no-self-import into b939718 on benmosher:master.

2 similar comments
@coveralls
Copy link

Coverage Status

Coverage increased (+0.04%) to 94.955% when pulling 5e133c0 on giodamelio:feature-no-self-import into b939718 on benmosher:master.

@coveralls
Copy link

coveralls commented Jan 23, 2017

Coverage Status

Coverage increased (+0.04%) to 94.955% when pulling 5e133c0 on giodamelio:feature-no-self-import into b939718 on benmosher:master.

@coveralls
Copy link

coveralls commented Jan 23, 2017

Coverage Status

Coverage increased (+0.04%) to 94.955% when pulling 5948d35 on giodamelio:feature-no-self-import into b939718 on benmosher:master.

@coveralls
Copy link

Coverage Status

Coverage increased (+0.04%) to 94.955% when pulling 75d468c on giodamelio:feature-no-self-import into b939718 on benmosher:master.

1 similar comment
@coveralls
Copy link

coveralls commented Jan 23, 2017

Coverage Status

Coverage increased (+0.04%) to 94.955% when pulling 75d468c on giodamelio:feature-no-self-import into b939718 on benmosher:master.

@giodamelio
Copy link
Contributor Author

That should cover the changelog and docs.

@coveralls
Copy link

coveralls commented Jan 23, 2017

Coverage Status

Coverage increased (+0.04%) to 94.955% when pulling 57dd625 on giodamelio:feature-no-self-import into b939718 on benmosher:master.

@giodamelio
Copy link
Contributor Author

I think the AppVeyor build might have failed because I pushed a second commit while the first one was still running, I saw that happen earlier. I didn't change any code in these last two commits, so it shouldn't have broken.

Copy link
Collaborator

@jfmengels jfmengels left a comment

Choose a reason for hiding this comment

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

Do you need to have these files created fr the tests to be run correctly?
image

@giodamelio
Copy link
Contributor Author

Yep those files are needed. I just added a comment in them explaining.

Copy link
Collaborator

@jfmengels jfmengels left a comment

Choose a reason for hiding this comment

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

Yep those files are needed. I just added a comment in them explaining.

Perfect!

I added a few commits to fix some typos (don't force push over it!)

This LGTM! I'm leaving some time for someone else to review.

Oh, and no need for squashing it yourself, we can do it directly now with GitHub.

Again, thanks a lot @giodamelio!

@giodamelio
Copy link
Contributor Author

Sounds good to me.

@ljharb
Copy link
Member

ljharb commented Jan 23, 2017

(heads up tho, if you squash directly on github you actually lose the link to the git log for the PR - it's far better to rebase/squash on the command line before clicking the button on github)

@coveralls
Copy link

coveralls commented Jan 23, 2017

Coverage Status

Coverage increased (+0.06%) to 94.969% when pulling 6c7775c on giodamelio:feature-no-self-import into e137b98 on benmosher:master.

@coveralls
Copy link

Coverage Status

Coverage decreased (-1.3%) to 93.655% when pulling dd3f0d0 on giodamelio:feature-no-self-import into e137b98 on benmosher:master.

1 similar comment
@coveralls
Copy link

Coverage Status

Coverage decreased (-1.3%) to 93.655% when pulling dd3f0d0 on giodamelio:feature-no-self-import into e137b98 on benmosher:master.

@coveralls
Copy link

coveralls commented Jan 23, 2017

Coverage Status

Coverage increased (+0.03%) to 94.947% when pulling d25cdd9 on giodamelio:feature-no-self-import into e137b98 on benmosher:master.

@giodamelio
Copy link
Contributor Author

Oh my god, @coveralls bot is getting a bit annoying.

@coveralls
Copy link

Coverage Status

Coverage decreased (-1.3%) to 93.655% when pulling d25cdd9 on giodamelio:feature-no-self-import into e137b98 on benmosher:master.

@coveralls
Copy link

coveralls commented Jan 23, 2017

Coverage Status

Coverage increased (+0.03%) to 94.947% when pulling d25cdd9 on giodamelio:feature-no-self-import into e137b98 on benmosher:master.

@coveralls
Copy link

coveralls commented Jan 23, 2017

Coverage Status

Coverage increased (+0.03%) to 94.947% when pulling d25cdd9 on giodamelio:feature-no-self-import into e137b98 on benmosher:master.

@jfmengels
Copy link
Collaborator

(heads up tho, if you squash directly on github you actually lose the link to the git log for the PR - it's far better to rebase/squash on the command line before clicking the button on github)

@ljharb I'm sorry, what git log are you talking about?
I was about to merge this, but I don't know how to squash this locally and then re-push to GitHub, as I don't have control over @giodamelio's fork. What do you recommend otherwise, squashing with the button anyway, or squashing on the command line and pushing to master?

Sorry about the delay @giodamelio!

@giodamelio
Copy link
Contributor Author

I think he meant when you squash on the cli you can include the commit messages from all the commits in the body of the squashed commit. I can squash it for you if you want, but I don't really mind losing the messages.

@jfmengels
Copy link
Collaborator

Hmm, this is what I'd get if I were to squash it from GitHub (I have the option to edit if I want to):

* Add rule itself

* Add test

* Add requested changes

* Change the word prohibit to forbid to match other rules

* Update docs

* Update changelog

* Add comment in test files

* Fix typos

* Simplify implementation a bit

* Add thanks :)

* extra comma

So I'm not sure what logs would be lost.
But yeah sure, if you feel like squashing @giodamelio, might as well :)

@giodamelio
Copy link
Contributor Author

Oh, I didn't think Github could do that. You might as well do it on your end then, the squash was giving me a bit of trouble and I would rather Github take care of it then me borking something.

@ljharb
Copy link
Member

ljharb commented Feb 17, 2017

@jfmengels i'm talking about when you fetch the origin/pr/727 ref from the command line - that "ref" (a git concept) will be orphaned when using squashmerge or rebasemerge on the github UI.

In other words, it's not just the commit messages. I'm content to do the squash for you, if that's necessary?

@coveralls
Copy link

coveralls commented Feb 17, 2017

Coverage Status

Coverage increased (+0.03%) to 94.949% when pulling e695506 on giodamelio:feature-no-self-import into b5a962f on benmosher:master.

@ljharb
Copy link
Member

ljharb commented Feb 17, 2017

@jfmengels also, if you note the text "Add more commits by pushing to the feature-no-self-import branch on giodamelio/eslint-plugin-import." - PRs now by default have the box checked that allows maintainers to push branches directly to the fork - so in fact you can directly update this PR's branch, which then reruns the tests, before actually doing the merge.

@ljharb
Copy link
Member

ljharb commented Feb 17, 2017

I've just done the rebase and force pushed it to the fork. Once tests have passed, please feel free to do a normal merge with a merge commit.

@giodamelio
Copy link
Contributor Author

Not sure exactly why the AppVeyor build failed, I don't think it handled the rebase well.

@coveralls
Copy link

Coverage Status

Coverage increased (+0.03%) to 94.949% when pulling 0ea3d80 on giodamelio:feature-no-self-import into b5a962f on benmosher:master.

1 similar comment
@coveralls
Copy link

coveralls commented Feb 17, 2017

Coverage Status

Coverage increased (+0.03%) to 94.949% when pulling 0ea3d80 on giodamelio:feature-no-self-import into b5a962f on benmosher:master.

@giodamelio
Copy link
Contributor Author

@benmosher @jfmengels I just wanted to ping you guys and see about getting this merged and inquire about a new release, that could hopefully include this.

@ljharb
Copy link
Member

ljharb commented Aug 1, 2017

@giodamelio it'll need another rebase to remove the merge commit (the "update branch" button doesn't help)

@coveralls
Copy link

coveralls commented Aug 1, 2017

Coverage Status

Coverage increased (+0.02%) to 95.99% when pulling 6dc8a86 on giodamelio:feature-no-self-import into dd28130 on benmosher:master.

@giodamelio
Copy link
Contributor Author

Yep, I shouldn't have used the "fix conflicts" button. Only causes me more issues 😑. Fix incoming.

@giodamelio
Copy link
Contributor Author

Should be good to go.

@coveralls
Copy link

coveralls commented Aug 1, 2017

Coverage Status

Coverage increased (+0.02%) to 95.99% when pulling fdb7823 on giodamelio:feature-no-self-import into dd28130 on benmosher:master.

@giodamelio
Copy link
Contributor Author

Hey guys, I totally forgot about this pull. I think it should be ready to go still.

@ljharb
Copy link
Member

ljharb commented Oct 13, 2017

@giodamelio would you rebase it on the command line, and we do need to figure out why the tests are failing

@ljharb
Copy link
Member

ljharb commented Oct 13, 2017

(it's possible that tests are failing on master, tho)

@coveralls
Copy link

coveralls commented Jan 4, 2018

Coverage Status

Coverage increased (+0.02%) to 96.2% when pulling be5b52d on giodamelio:feature-no-self-import into 523789f on benmosher:master.

@ljharb
Copy link
Member

ljharb commented Jan 4, 2018

Took care of the rebase; tests are passing now.

@ljharb ljharb merged commit a9bee1a into import-js:master Jan 4, 2018
@giodamelio
Copy link
Contributor Author

Thanks, I totally forgot about this again :). Merged after almost a year. :)

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

Successfully merging this pull request may close these issues.

None yet

5 participants