diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-10-21 09:29:23 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-10-21 09:29:23 +0000 |
commit | dab6ba29e8eb9a5c2890ac3be8eab6e994aeb10e (patch) | |
tree | 0d209cfc6f7b9c794c254601c29aa5d8b9414876 /setup.cfg | |
parent | Adding upstream version 7.1.3. (diff) | |
download | sqlglot-dab6ba29e8eb9a5c2890ac3be8eab6e994aeb10e.tar.xz sqlglot-dab6ba29e8eb9a5c2890ac3be8eab6e994aeb10e.zip |
Adding upstream version 9.0.1.upstream/9.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | setup.cfg | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..bbd20d0 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,15 @@ +[mypy] +disallow_untyped_calls = False +no_implicit_optional = True + +[mypy-sqlglot.*] +ignore_errors = True + +[mypy-sqlglot.dataframe.*] +ignore_errors = False + +[mypy-tests.*] +ignore_errors = True + +[mypy-tests.dataframe.*] +ignore_errors = False |