This repository has been archived by the owner on Feb 18, 2024. It is now read-only.
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.
babel-eslint
to the default ESLint parser, since it supports all of the syntax we are using out of the box.ignorePatterns
option instead of.eslintignore
.!.eslintrc.js
to!.*.js
so that all dotfiles are un-ignored, which also allows us to remove the multiple globbing combinations in the ESLint CLI command used foryarn lint
, and instead pass just.
.reportUnusedDisableDirectives
option instead of the--report-unused-disable-directives
CLI flag.--max-warnings 0
so that CI fails for warnings too..eslintrc.js
to.prettierrc.js
, since not all editor integrations check the ESLint config location.package.json
scripts have been added to make it easier for those who don't use format-on-save to apply fixes.*.json
and files undertypes/
) have had their formatting fixed usingyarn fix
.