Skip to content

Commit

Permalink
Update sublime settings
Browse files Browse the repository at this point in the history
  • Loading branch information
dcramer committed Jul 6, 2016
1 parent 4652d73 commit 357857f
Show file tree
Hide file tree
Showing 2 changed files with 93 additions and 59 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"DashDoc",
"Dracula Color Scheme",
"GitGutter",
"isort",
"JSX",
"LESS",
"Material Theme",
Expand Down
151 changes: 92 additions & 59 deletions sublimetext3/Packages/User/SublimeLinter.sublime-settings
Original file line number Diff line number Diff line change
@@ -1,61 +1,94 @@
{
"user": {
"debug": false,
"delay": 0.25,
"error_color": "D02000",
"gutter_theme": "Packages/SublimeLinter/gutter-themes/Default/Default.gutter-theme",
"gutter_theme_excludes": [],
"lint_mode": "background",
"linters": {
"eslint": {
"@disable": false,
"args": [],
"excludes": []
},
"pep8": {
"@disable": false,
"@python": "2.7",
"args": [],
"excludes": [],
"ignore": "E501",
"max-line-length": 100,
"select": ""
},
"pyflakes": {
"@disable": false,
"@python": "2.7",
"args": [],
"excludes": []
}
},
"mark_style": "outline",
"no_column_highlights_line": false,
"passive_warnings": false,
"paths": {
"linux": [],
"osx": [
"/usr/local/bin",
"/usr/bin"
],
"windows": []
},
"python_paths": {
"linux": [],
"osx": [],
"windows": []
},
"rc_search_limit": 5,
"shell_timeout": 10,
"show_errors_on_save": false,
"show_marks_in_minimap": true,
"syntax_map": {
"html (django)": "html",
"html (rails)": "html",
"html 5": "html",
"php": "html",
"python django": "python"
},
"warning_color": "DDB700",
"wrap_find": true
}
"user":
{
"debug": false,
"delay": 0.25,
"error_color": "D02000",
"gutter_theme": "Packages/SublimeLinter/gutter-themes/Default/Default.gutter-theme",
"gutter_theme_excludes":
[
],
"lint_mode": "background",
"linters":
{
"eslint":
{
"@disable": false,
"args":
[
],
"excludes":
[
]
},
"pep8":
{
"@disable": false,
"@python": "2.7",
"args":
[
],
"excludes":
[
],
"ignore": "E501",
"max-line-length": 100,
"select": ""
},
"pyflakes":
{
"@disable": false,
"@python": "2.7",
"args":
[
],
"excludes":
[
]
}
},
"mark_style": "outline",
"no_column_highlights_line": false,
"passive_warnings": true,
"paths":
{
"linux":
[
],
"osx":
[
"/usr/local/bin",
"/usr/bin"
],
"windows":
[
]
},
"python_paths":
{
"linux":
[
],
"osx":
[
],
"windows":
[
]
},
"rc_search_limit": 5,
"shell_timeout": 10,
"show_errors_on_save": false,
"show_marks_in_minimap": true,
"syntax_map":
{
"html (django)": "html",
"html (rails)": "html",
"html 5": "html",
"php": "html",
"python django": "python"
},
"warning_color": "DDB700",
"wrap_find": true
}
}

0 comments on commit 357857f

Please sign in to comment.