Skip to content

Commit 53a8a0e

Browse files
committed
Add mago.toml
1 parent 7854317 commit 53a8a0e

1 file changed

Lines changed: 37 additions & 0 deletions

File tree

.mago/mago.toml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Welcome to Mago!
2+
# For full documentation, see https://mago.carthage.software/tools/overview
3+
php-version = "8.1.0"
4+
5+
[source]
6+
workspace = "."
7+
paths = ["src/"]
8+
includes = ["vendor"]
9+
excludes = []
10+
11+
[formatter]
12+
print-width = 120
13+
tab-width = 4
14+
use-tabs = false
15+
16+
[linter]
17+
integrations = ["phpunit"]
18+
19+
[linter.rules]
20+
ambiguous-function-call = { enabled = false }
21+
literal-named-argument = { enabled = false }
22+
halstead = { effort-threshold = 7000 }
23+
24+
[analyzer]
25+
plugins = []
26+
find-unused-definitions = false
27+
find-unused-expressions = false
28+
analyze-dead-code = false
29+
memoize-properties = true
30+
allow-possibly-undefined-array-keys = true
31+
check-throws = false
32+
check-missing-override = false
33+
find-unused-parameters = false
34+
strict-list-index-checks = false
35+
no-boolean-literal-comparison = false
36+
check-missing-type-hints = false
37+
register-super-globals = true

0 commit comments

Comments
 (0)