added sublime settings
This commit is contained in:
38
SublimeText/Preferences.sublime-settings
Normal file
38
SublimeText/Preferences.sublime-settings
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"bold_folder_labels": true,
|
||||
"csslint_options":
|
||||
{
|
||||
"empty-rules": true,
|
||||
"ids": false
|
||||
},
|
||||
"file_exclude_patterns":
|
||||
[
|
||||
".DS_Store",
|
||||
".*.swp",
|
||||
"dump.rdb"
|
||||
],
|
||||
"folder_exclude_patterns":
|
||||
[
|
||||
".git",
|
||||
".svn",
|
||||
".sass-cache",
|
||||
"coverage",
|
||||
"log",
|
||||
"tmp"
|
||||
],
|
||||
"font_face": "Menlo",
|
||||
"font_size": 12.0,
|
||||
"highlight_modified_tabs": true,
|
||||
"ignored_packages":
|
||||
[
|
||||
"Vintage"
|
||||
],
|
||||
"open_files_in_new_window": false,
|
||||
"shift_tab_unindent": true,
|
||||
"tab_size": 4,
|
||||
"translate_tabs_to_spaces": true,
|
||||
"draw_white_space" : "all",
|
||||
"trim_trailing_white_space_on_save": true,
|
||||
"word_wrap": true,
|
||||
"detect_slow_plugins": false
|
||||
}
|
||||
25
SublimeText/phpcs.sublime-settings
Normal file
25
SublimeText/phpcs.sublime-settings
Normal file
@@ -0,0 +1,25 @@
|
||||
{
|
||||
// Turn the debug output on/off
|
||||
"show_debug": false,
|
||||
|
||||
// Show the errors in the quick panel so you can then goto line
|
||||
"phpcs_show_quick_panel": false,
|
||||
|
||||
// PHP-CS-Fixer settings
|
||||
|
||||
// Absolute path to where you have the php-cs-fixer installed
|
||||
"php_cs_fixer_executable_path": "/path/to/php-cs-fixer.phar",
|
||||
|
||||
// Additional arguments you can specify into the application
|
||||
//
|
||||
// Example:
|
||||
// {
|
||||
// "--level": "all"
|
||||
// }
|
||||
"php_cs_fixer_additional_args": {
|
||||
"--level": "all"
|
||||
},
|
||||
|
||||
// Are we going to run php -l over the file?
|
||||
"phpcs_linter_run": false
|
||||
}
|
||||
Reference in New Issue
Block a user