Files
zulip/tools
neiljp (Neil Pilgrim) fec59b29cd Tools/mypy: Enforce typed generics in tools/run-mypy.
This adds the "--disallow-any=generics" option to run-mypy, which no
longer permits:
- inheriting from "list"; use "List[sometype]" (or a TypeVar)
- generic types with no following square brackets specifying the type
  (even if initially 'Any')

Any (and '...' for Callable) is a lot easier to search for than an
absence of square brackets, and should improve overall typing quality.
2017-11-08 12:40:40 -08:00
..
2017-11-06 08:53:48 -08:00
2017-09-29 15:44:56 -07:00
2017-09-29 15:44:56 -07:00
2017-09-29 15:44:56 -07:00
2017-09-29 15:44:56 -07:00
2017-09-29 15:44:56 -07:00
2017-09-29 15:44:56 -07:00

This directory contains scripts that are used in building, managing, testing, and other forms of work in a Zulip development environment. Note that tools that are also useful in production belong in scripts/ or should be Django management commands.

For more details, see http://zulip.readthedocs.io/en/latest/directory-structure.html.