-
Notifications
You must be signed in to change notification settings - Fork 638
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
Remove the lint
script from blockly-scripts
#1976
Comments
Hi I would like to be assigned to this issue! This would be my second contribution to Blockly-samples, my first being through the Grace Hopper Conference. |
Hello @shivalipatel6 Thanks for your interest and coming back to the project :D I can assign you to the issue, but just so you know we'll have to hold your fix until after #1946 is merged. |
@BeksOmega Okay! I'll wait until #1946 is merged! I noticed that most of the good first issue projects were connected to that so I'm willing to wait. Just to make sure the fix is asking me to delete lint.js script after the #1946 issue is merged? |
Hello again :D It is asking you to:
|
Hi @shivalipatel6, one small correction to what Beka said. You won't need to touch the |
Remove the lint script from blockly-scripts google#1976
I have a question: |
Hi @shivalipatel6, this won't be a problem as each plugin still contains a script for linting so that you can run I hope that helps! I'll be reviewing your PR later today. Let me know if you have any other questions. Thanks! |
Check for duplicates
Component
dev-scripts
Problem
The lint script in dev-scripts runs eslint through the JS API. After #1946 is merged, we'll no longer need this script because eslint can be invoked directly on the command line from any level of blockly-samples. This is an improvement because the eslint cli has better formatted output (especially when run at the entire repository level) and the flat config is easier to use and make changes to.
Request
Remove the
lint
script from dev-scripts. This is a breaking change for the plugin. The lint script already logs a deprecation warning when run. I hope that nobody is using this script outside of blockly-samples.Alternatives considered
No response
Additional context
If you are currently using
blockly-scripts lint
, switch to invoking eslint through its cli or write your own script that uses the eslint js api. Also, it would help us if you commented on this issue with your use case.The text was updated successfully, but these errors were encountered: