forked from erichard/SublimePHPCompanion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PHP Companion.sublime-settings
35 lines (26 loc) · 1.02 KB
/
PHP Companion.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
{
// Default pattern
"start_dir_pattern": "^.*?((?:[\/\\\\][A-Z][^\/\\\\]*)+)$",
"exclude_dir": [],
// Need the php binary to work
"allow_use_from_global_namespace": false,
// Use "inline" to include the namespace just after the <?php opening tag
"namespace_position": "newline",
// If using "newline" for "namespace_position", how many newlines to
// insert after opening tag
"namespace_blank_lines": 2,
// Sort the list of use statements by their line length
"use_sort_length": false,
// Visibility of properties generated by the "insert constructor property"
// command. "public", "protected" or "private"
"visibility": "private",
// Copy comment doc from parent or interface to implemented class
// "true" or "inheritdoc".
"docblock_inherit": true,
// Format of the message when an interface is implemented
// true: TODO statement
// false: Exception
"use_todo_implement": false,
"padawan_composer": "composer",
"padawan_timeout": 0.5
}