-
Notifications
You must be signed in to change notification settings - Fork 0
[JS] KeywordsOrderedByLengthRule (require) #7
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
base: main
Are you sure you want to change the base?
Conversation
| // @NOTE: GROUP1 | ||
| const package3 = require('package-3-html-test-1'); | ||
| const { | ||
| test1, | ||
| test2, | ||
| test3, | ||
| test4, | ||
| test5, | ||
| test6, | ||
| test7 | ||
| } = require('package-2-test'); | ||
| const package1 = require('package1'); |
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.
Keep ascending order for keyword: require (packages)
| // @NOTE: GROUP2 | ||
| const helper1 = require('@/helpers/helper1'); | ||
| const { | ||
| plugin2, | ||
| plugin3, | ||
| plugin4, | ||
| plugin5, | ||
| plugin6, | ||
| plugin7 | ||
| } = require('@/plugins'); | ||
| const utility5000 = require('@/utilities/utility5000'); | ||
| const utility1 = require('@/utilites/utility1'); |
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.
Keep ascending order for keyword: require (other)
| // @NOTE: GROUP3 | ||
| const helper110 = require('@/utilites/helper110-2222'); | ||
| const helper100 = require('@/helpers/helper100-1111'); | ||
| const helper120 = require('@/utilities/helper120-3333'); |
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.
Keep ascending order for keyword: require (other)
|
pull request review completed 💬 7 comment(s) require attention. |
459394f to
d8a500d
Compare
No description provided.