-
-
Notifications
You must be signed in to change notification settings - Fork 327
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
add JS lint workflow #230
add JS lint workflow #230
Conversation
@JasonWeill lint: lerna run lint --stream --scope \"@jupyter-ai/core\" |
Should we add |
jupyter_ai is the only package with TS code. I think cookiecutter is not currently usable as is for providers. |
When running at the top level, it seems like code in the
|
92dd0bf
to
f328a82
Compare
f328a82
to
53c8bee
Compare
53c8bee
to
284f602
Compare
Looks good! Thanks @dlqqq for your revisions. (I can't give a ship-it to this PR, since I'm still listed as the author.) |
* Fixes error and omission in config files * Changes after running jlpm lint once * Modifies eslint config * Ignores dotfiles * Fix lint errors * Fixes or ignores eslint warnings * Add new workflow * Fix error in config * Runs linting only on Linux * Uses standard GitHub action for setup-node * Force yarn used for caching * Simplify test config * Adds reopen trigger * fix lint workflow --------- Co-authored-by: David L. Qiu <david@qiu.dev>
* Fixes error and omission in config files * Changes after running jlpm lint once * Modifies eslint config * Ignores dotfiles * Fix lint errors * Fixes or ignores eslint warnings * Add new workflow * Fix error in config * Runs linting only on Linux * Uses standard GitHub action for setup-node * Force yarn used for caching * Simplify test config * Adds reopen trigger * fix lint workflow --------- Co-authored-by: David L. Qiu <david@qiu.dev>
Ran
jlpm lint
insidepackages/jupyter-ai
. This change fixes or suppresses all lint errors found.Adds a new GitHub action to run
lerna run lint
on every pull request in this package. Note that the action doesn't run on this pull request.This is prep work for #201, which should run
lint
on all PRs.