Skip to content

Commit 6d8685c

Browse files
authoredJan 23, 2025··
chore: update mago configuration to match latest release (#503)
Signed-off-by: azjezz <azjezz@protonmail.com>
1 parent c0c4bb6 commit 6d8685c

File tree

2 files changed

+35
-4
lines changed

2 files changed

+35
-4
lines changed
 

‎.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,6 @@
1616

1717
# phpunit cache
1818
/config/.phpunit.result.cache
19+
20+
# mago binary
21+
mago

‎mago.toml

+32-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,43 @@
11
[source]
22
paths = ["src", "tests", "examples"]
33
includes = ["vendor"]
4-
excludes = []
4+
excludes = [
5+
"src/bootstrap.php",
6+
"src/preload.php",
7+
"src/Psl/Internal/Loader.php",
8+
]
59

610
[format]
711
null_type_hint = "pipe"
812

913
[linter]
10-
level = "Error"
11-
default_plugins = true
12-
plugins = ["phpunit"]
14+
plugins = ["php-unit"]
15+
16+
[[linter.rules]]
17+
name = "maintainability/cyclomatic-complexity"
18+
threshold = 43
19+
20+
[[linter.rules]]
21+
name = "maintainability/kan-defect"
22+
threshold = 3.5
23+
24+
[[linter.rules]]
25+
name = "maintainability/halstead"
26+
effort_threshold = 16_000.0
27+
volume_threshold = 1_400.0
28+
difficulty_threshold = 18.5
29+
30+
[[linter.rules]]
31+
name = "maintainability/excessive-parameter-list"
32+
threshold = 9
33+
34+
[[linter.rules]]
35+
name = "maintainability/too-many-enum-cases"
36+
threshold = 800
37+
38+
[[linter.rules]]
39+
name = "maintainability/too-many-methods"
40+
threshold = 43
1341

1442
[[linter.rules]]
1543
name = "best-practices/disallowed-functions"

0 commit comments

Comments
 (0)
Please sign in to comment.