diff options
author | Brad Solomon <brad.solomon.1124@gmail.com> | 2020-02-09 17:23:33 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-09 18:23:33 -0400 |
commit | 9627ac2173368b9e8eeca8431892f1b377217393 (patch) | |
tree | 7e010884bfe13e6bbdfc62b6950e5dcf855970ee /Python.gitignore | |
parent | 584ee18cc1cf321d74816f848a268d9e035f5035 (diff) | |
download | gitignore-9627ac2173368b9e8eeca8431892f1b377217393.tar.gz gitignore-9627ac2173368b9e8eeca8431892f1b377217393.zip |
Ignore .pytype/ directory (#3301)
pytype is a static type analyzer for Python code;
it generates files of inferred type information,
located by default in .pytype/pyi.
Diffstat (limited to 'Python.gitignore')
-rw-r--r-- | Python.gitignore | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Python.gitignore b/Python.gitignore index b6e47617..5d8f5722 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -127,3 +127,6 @@ dmypy.json # Pyre type checker .pyre/ + +# pytype static type analyzer +.pytype/ |