-
I didn't see a contributing doc but maybe I missed it. Are there any guidelines to contributing? or do we just do PRs? |
Beta Was this translation helpful? Give feedback.
Answered by
MarshalX
Mar 15, 2025
Replies: 1 comment
-
Hi, sorry for the long response. Guidelines are very simple and most covered by CI/CD pipelines and will punish you if something goes wrong. Long story short:
That's probably it. And again, almost every step from this list is covered by CI |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ECAllen
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, sorry for the long response. Guidelines are very simple and most covered by CI/CD pipelines and will punish you if something goes wrong.
Long story short:
*args
and**kwargs
; also we do not annotateself
here. The linter will help you to not miss any type of annotation. You can go further and usepyright
to verify your typesruff
. For linting and formatting. So just run it locally and fi…