-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpfmt.sublime-settings
executable file
·57 lines (57 loc) · 1.26 KB
/
phpfmt.sublime-settings
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"autoimport": true,
"disable_auto_align": false,
"enable_auto_align": true,
"format_on_save": true,
"indent_with_space": true,
"passes":
[
"ReplaceBooleanAndOr",
"EliminateDuplicatedEmptyLines",
"RTrim",
"RestoreComments",
"UpgradeToPreg",
"IndentTernaryConditions",
"StripSpaceWithinControlStructures",
"StripExtraCommaInList",
"PrettyPrintDocBlocks",
"SpaceBetweenMethods",
"NoSpaceAfterPHPDocBlocks",
"ShortArray",
"DoubleToSingleQuote",
"LeftAlignComment",
"IndentTernaryConditions",
"AlignDoubleSlashComments",
"RemoveUseLeadingSlash",
"MergeElseIf",
"ClassToSelf",
"ClassToStatic",
"Reindent",
"ReindentEqual",
"ReindentObjOps",
"ReindentComments",
"ReindentAndAlignObjOps",
"ReindentSwitchBlocks",
"ReindentColonBlocks",
"PSR1OpenTags",
"PSR1ClassNames",
"PSR1ClassConstants",
"PSR1BOMMark",
"PSR2AlignObjOp",
"PSR2EmptyFunction",
"PSR2CurlyOpenNextLine",
"PSR2LnAfterNamespace",
"PSR2KeywordsLowerCase",
"PSR2IndentWithSpace",
"PSR2SingleEmptyLineAndStripClosingTag",
"PSR2ModifierVisibilityStaticOrder",
"NormalizeLnAndLtrimLines"
],
"php_bin": "/usr/local/php7/bin/php",
"psr1": true,
"psr1_naming": false,
"psr2": true,
"smart_linebreak_after_curly": true,
"version": 4,
"yoda": false
}