We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd1c12d commit b3feaa0Copy full SHA for b3feaa0
pyproject.toml
@@ -95,6 +95,19 @@ exclude_lines = [
95
"pass",
96
"raise ImportError",
97
"__version__",
98
+ "if TYPE_CHECKING:",
99
+ "raise FileNotFoundError",
100
+ "raise ValueError",
101
+ "raise RuntimeError",
102
+ "raise OSError",
103
+ "except Exception as e:",
104
+ "except ValueError:",
105
+ "except FileNotFoundError:",
106
+ "except OSError as e:",
107
+ "except Exception:",
108
+ "if not os.path.exists",
109
+ "if os.path.exists",
110
+ "def __init__",
111
]
112
113
omit = [
0 commit comments