typing
Here are 616 public repositories matching this topic...
-
Updated
Jan 13, 2022 - TypeScript
-
Updated
Feb 29, 2020
-
Updated
Nov 28, 2021 - JavaScript
-
Updated
Feb 6, 2022 - Python
-
Updated
Oct 7, 2021 - JavaScript
-
Updated
Jan 27, 2022 - Python
-
Updated
Jan 14, 2022 - JavaScript
-
Updated
Dec 31, 2021 - Python
Currently all responses return 200 (unless there is a server error, in which case 500).
It would be best to have specific codes for different types of errors to differentiate between them.
Example:
400 - Bad request
etc.
-
Updated
Feb 7, 2022 - Python
-
Updated
Nov 2, 2021 - JavaScript
Ideally there should be a way to install on at least some machines without cargo. This will need an installation script to install the language files in lieu of build.rs.
Some alternative installation methods which would be good to include are:
shinstallation script w/ prebuilt binaries- AUR package
For prebuilt binaries, it would be ideal to setup GitHub workflows or similar so
-
Updated
Jan 31, 2022 - Python
-
Updated
Nov 15, 2020 - Python
-
Updated
Dec 30, 2021 - Python
-
Updated
Aug 12, 2021 - Python
-
Updated
Nov 28, 2021 - Python
TAP works very slow:
to reproduce
from tap import Tap
from argparse import ArgumentParser
from profilehooks import profile, timecall
class SimpleArgumentParser(Tap):
name: str # Your name
language: str = 'Python' # Programming language
package: str = 'Tap' # Package name
stars: int # Number of stars
max_stars: int = 5 # Maximum stars
@profile(dirs=T
Just fix tests to use Factory instead of old style
-
Updated
May 29, 2019 - Java
Problem
We could improve the readability / experience reading through the library source code if there were module level docstrings.
Suggested solution
All python modules should include a docstring explaining
Improve this page
Add a description, image, and links to the typing topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the typing topic, visit your repo's landing page and select "manage topics."
Elm has the option to output errors as JSON (via a flag), and something like that is handy for writing tooling around it. I'm trying to integrate
pytypeinto ALE and this would make it a lot easier.