forked from dshafik/bag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpint.json
34 lines (34 loc) · 975 Bytes
/
pint.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"preset": "psr12",
"rules": {
"declare_strict_types": true,
"fully_qualified_strict_types": {
"import_symbols": true,
"leading_backslash_in_global_namespace": true
},
"strict_comparison": true,
"blank_line_after_opening_tag": true,
"blank_line_after_namespace": true,
"blank_lines_before_namespace": true,
"ordered_imports": true,
"blank_line_between_import_groups": false,
"no_superfluous_phpdoc_tags": true,
"blank_line_before_statement": {
"statements": [
"break",
"continue",
"declare",
"return",
"throw",
"try"
]
},
"single_quote": {
"strings_containing_single_quote_chars": true
},
"array_indentation": true,
"array_syntax": {
"syntax": "short"
}
}
}