forked from benmatselby/sublime-phpcs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default.sublime-commands
36 lines (36 loc) · 937 Bytes
/
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
[
{
"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",
"command": "phpcs_fix_this_file"
},
{
"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
}
}
]