-
Notifications
You must be signed in to change notification settings - Fork 126
/
Default.sublime-commands
50 lines (50 loc) · 1.31 KB
/
Default.sublime-commands
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
[
{
"caption": "PHP Code Sniffer: Sniff this file",
"command": "phpcs_sniff_this_file"
},
{
"caption": "PHP Code Sniffer: Clear sniffer marks",
"command": "phpcs_clear_sniffer_marks"
},
{
"caption": "PHP Code Sniffer: Show previous errors",
"command": "phpcs_show_previous_errors"
},
{
"caption": "PHP Code Sniffer: Goto next error",
"command": "phpcs_goto_next_error"
},
{
"caption": "PHP Coding Standards Fixer: Fix this file (PHP Code Beautifier)",
"command": "phpcs_fix_this_file",
"args": {
"tool": "CodeBeautifier"
}
},
{
"caption": "PHP Coding Standards Fixer: Fix this file (PHP-CS-Fixer)",
"command": "phpcs_fix_this_file",
"args": {
"tool": "Fixer"
}
},
{
"caption": "PHP Code Sniffer: Turn Execute On Save On",
"command": "phpcs_toggle_plugin",
"args": {
"toggle": true
}
},
{
"caption": "PHP Code Sniffer: Turn Execute On Save Off",
"command": "phpcs_toggle_plugin",
"args": {
"toggle": false
}
},
{
"caption": "PHP Code Sniffer: Switch coding standard",
"command": "phpcs_switch_coding_standard"
}
]