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 831e9a3 commit 4c74108Copy full SHA for 4c74108
{{cookiecutter.project_slug}}/.gitignore
@@ -2,6 +2,7 @@
2
*.sqlite
3
*.pem
4
**/facts/
5
+.pyscn/
6
.ruff*
7
tilt-example-python/
8
{{cookiecutter.project_slug}}/.pyscn.toml
@@ -0,0 +1,27 @@
1
+[complexity]
+low_threshold = 15
+medium_threshold = 25
+
+[dead_code]
+min_severity = "warning"
+[output]
9
+directory = ".pyscn/reports"
10
11
+[analysis]
12
+recursive = true # Recursively analyze directories
13
+follow_symlinks = false # Follow symbolic links
14
+include_patterns = ["**/*.py"] # File patterns to include
15
+exclude_patterns = [ # File patterns to exclude
16
+ "**/test_*.py",
17
+ "**/*_test.py",
18
+ "**/__pycache__/*",
19
+ "**/*.pyc",
20
+ "**/.pytest_cache/",
21
+ ".tox/",
22
+ "venv/",
23
+ "env/",
24
+ ".venv/",
25
+ ".env/",
26
+ "utils/*",
27
+]
0 commit comments