Skip to content
This repository has been archived by the owner on Feb 6, 2025. It is now read-only.

Commit

Permalink
Tighten mypy.ini.
Browse files Browse the repository at this point in the history
  • Loading branch information
obi1kenobi committed Dec 9, 2020
1 parent 5475477 commit 349a086
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions mypy.ini
Original file line number Diff line number Diff line change
Expand Up @@ -131,23 +131,30 @@ check_untyped_defs = False
disallow_untyped_calls = False
disallow_untyped_defs = False

[mypy-graphql_compiler.query_formatting.*]
disallow_untyped_defs = False

[mypy-graphql_compiler.query_formatting.common.*]
disallow_untyped_calls = False

[mypy-graphql_compiler.query_formatting.cypher_formatting.*]
disallow_untyped_calls = False
disallow_untyped_defs = False

[mypy-graphql_compiler.query_formatting.graphql_formatting.*]
disallow_untyped_calls = False
disallow_untyped_defs = False

[mypy-graphql_compiler.query_formatting.gremlin_formatting.*]
disallow_untyped_calls = False
disallow_untyped_defs = False

[mypy-graphql_compiler.query_formatting.match_formatting.*]
disallow_untyped_calls = False
disallow_untyped_defs = False

[mypy-graphql_compiler.query_formatting.representations.*]
disallow_untyped_defs = False

[mypy-graphql_compiler.query_formatting.sql_formatting.*]
disallow_untyped_defs = False

[mypy-graphql_compiler.query_pagination.pagination_planning.*]
disallow_untyped_calls = False
Expand Down

0 comments on commit 349a086

Please sign in to comment.