typing
Here are 661 public repositories matching this topic...
-
Updated
May 24, 2022 - TypeScript
-
Updated
Feb 29, 2020
-
Updated
Mar 2, 2022 - JavaScript
-
Updated
Jun 2, 2022 - Python
-
Updated
Mar 25, 2022 - JavaScript
-
Updated
Jun 5, 2022 - 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
Jan 27, 2022 - Python
-
Updated
Jun 1, 2022 - JavaScript
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
-
Updated
Feb 8, 2022 - Python
-
Updated
May 28, 2022 - 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
May 2, 2022 - Python
-
Updated
May 31, 2022 - Rust
On Arch Linux, guess I don't have an OS wordlist:
thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: ToipeError { msg: "No such file or directory (os error 2)" }', /home/ben/.cargo/registry/src/github.com-1ecc6299db9ec823/toipe-0.4.0/src/main.rs:9:40 note: run withRUST_BACKTRACE=1environment variable to display a backtrace
Could print a warning or just use the
-
Updated
May 14, 2022 - Python
-
Updated
Mar 23, 2022 - Python
-
Updated
Aug 12, 2021 - Python
-
Updated
Jun 2, 2022 - 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
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.