We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug
ESLint didn't fix all typescript files in lib directory.
"lint": "eslint lib/**/*.ts", "lint:fix": "eslint --fix lib/**/*.ts",
These files are not fixed by ESLint:
crosshair-manager.ts
export-control.ts
index.ts
map-generator.ts
printable-area-manager.ts
To Reproduce Steps to reproduce the behavior:
yarn install
yarn run lint:fix
Expected behavior
All typescript files should be fixed by ESLint.
Screenshots
Additional context
Updating the command to the following will solve the problem.
"lint": "eslint lib/*.ts", "lint:fix": "eslint --fix lib/*.ts",
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
ESLint didn't fix all typescript files in lib directory.
These files are not fixed by ESLint:
crosshair-manager.ts
export-control.ts
index.ts
map-generator.ts
printable-area-manager.ts
To Reproduce
Steps to reproduce the behavior:
yarn install
in terminal.yarn run lint:fix
, nothing happens. The format of the files above is not updated.Expected behavior
All typescript files should be fixed by ESLint.
Screenshots
Additional context
Updating the command to the following will solve the problem.
The text was updated successfully, but these errors were encountered: