Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
.eslintignore
As I understand the file is included for users that use the globally installed
eslint
. Hense I usedeslint --ext .js,.vue
to check the correctness of.eslintignore
..eslintignore
beforeWhat is changed:
*.js
suffixes removed because they are not necessary to ignore the wholebuild
andconfig
directories/
prefix is omitted than anyconfig
orbuild
directories in the repository will be ignored (i.e.src/config/myConfig.js
will not be linted). This PR adds the/
prefix.*.js
config files from root directory are ignored by ESLint (currently they will fail linting process forairbnb
style because of;
absence)/test/unit/coverage/
folder. They will be ignored after PR merge./dist/
will be ignored after PR merge..gitignore
/
to several paths (i.e./dist/
). So after this PR users will be able to addsrc/dist/normalDistribution.js
togit
repository./
prefix tonode_modules/
because any nestednode_modules
folders are usually have relatedpackage.json
and thus are not intended to be committed to source control.Used resources
Any feedback is welcome.