Advertisement
Guest User

Untitled

a guest
Feb 27th, 2020
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. # NOTE: All relative paths are relative to the location of this file.
  2.  
  3. [pytype]
  4.  
  5. # Space-separated list of files or directories to exclude.
  6. # exclude =
  7.  
  8. # Space-separated list of files or directories to process.
  9. inputs =
  10. .
  11.  
  12. # Keep going past errors to analyze as many files as possible.
  13. keep_going = True
  14.  
  15. # Run N jobs in parallel.
  16. jobs = 4
  17.  
  18. # All pytype output goes here.
  19. output = .pytype
  20.  
  21. # Paths to source code directories, separated by ':'.
  22. pythonpath =
  23. .
  24.  
  25. # Python version (major.minor) of the target code.
  26. python_version = 3.7
  27.  
  28. # Comma separated list of error names to ignore.
  29. disable =
  30. pyi-error
  31.  
  32. # Don't report errors.
  33. report_errors = True
  34.  
  35. # Experimental: Infer precise return types even for invalid function calls.
  36. precise_return = False
  37.  
  38. # Experimental: solve unknown types to label with structural types.
  39. protocols = False
  40.  
  41. # Experimental: Only load submodules that are explicitly imported.
  42. strict_import = False
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement