-
Notifications
You must be signed in to change notification settings - Fork 126
/
Context.sublime-menu
34 lines (34 loc) · 1.25 KB
/
Context.sublime-menu
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
[
{ "caption": "-" },
{
"caption": "PHP Code Sniffer",
"children":
[
{ "command": "phpcs_sniff_this_file", "caption": "Sniff this file" },
{ "command": "phpcs_show_previous_errors", "caption": "Show previous errors" },
{ "command": "phpcs_goto_next_error", "caption": "Goto Next Error" },
{ "command": "phpcs_clear_sniffer_marks", "caption": "Clear sniffer marks" },
{
"caption": "Fix this file",
"children": [
{
"command": "phpcs_fix_this_file",
"caption": "PHP-CS-Fixer (php-cs-fixer)",
"args": {
"tool": "Fixer"
}
},
{
"command": "phpcs_fix_this_file",
"caption": "PHP Code Beautifier (phpcbf)",
"args": {
"tool": "CodeBeautifier"
}
}
]
},
{ "command": "phpcs_toggle_plugin"},
{ "command": "phpcs_switch_coding_standard", "caption": "Switch coding standard" }
]
}
]