Last active
December 31, 2019 21:00
-
-
Save expalmer/6d2acbe203742e84aa0a0f33ca6214ac to your computer and use it in GitHub Desktop.
SublimeText3 Globo Personal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
// The Nodejs installation path | |
"node_path": { | |
"windows": "node.exe", | |
"linux": "/usr/bin/nodejs", | |
"osx": "/usr/local/bin/node" | |
}, | |
// The location to search for a locally installed eslint package. | |
// These are all relative paths to a project's directory. | |
// If this is not found, it will try to fallback to a global package | |
// (see 'eslint_path' below) | |
"local_eslint_path": { | |
"windows": "node_modules/eslint/bin/eslint.js", | |
"linux": "node_modules/.bin/eslint", | |
"osx": "node_modules/.bin/eslint" | |
}, | |
// The location of the globally installed eslint package to use as a fallback | |
"eslint_path": { | |
"windows": "%APPDATA%/npm/node_modules/eslint/bin/eslint", | |
"linux": "/usr/bin/eslint", | |
"osx": "/usr/local/bin/eslint" | |
}, | |
// Specify this path to an eslint config file to override the default behavior. | |
// Passed to eslint as --config. Read more here: | |
// http://eslint.org/docs/user-guide/command-line-interface#c---config | |
// If an absolute path is provided, it will use as is. | |
// Else, it will look for the file in the root of the project directory. | |
// Failing either, it will skip the config file | |
"config_path": "", | |
// Automatically format when a file is saved. | |
"format_on_save": true, | |
// Only attempt to format files with whitelisted extensions on save. | |
// Leave empty to disable the check | |
"format_on_save_extensions": [ | |
"js", | |
"jsx", | |
"es", | |
"es6", | |
"babel" | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Settings in here override those in "ESLint-Formatter/ESLint-Formatter.sublime-settings", | |
{ | |
"config_path": ".eslintrc.json", | |
"format_on_save": true | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"bootstrapped": true, | |
"in_process_packages": | |
[ | |
], | |
"installed_packages": | |
[ | |
"A File Icon", | |
"BracketHighlighter", | |
"Dracula Color Scheme", | |
"EditorConfig", | |
"ESLint", | |
"ESLint-Formatter", | |
"GitGutter", | |
"GraphQL", | |
"gruvbox", | |
"Package Control", | |
"SideBarEnhancements", | |
"SublimeLinter", | |
"SublimeLinter-eslint", | |
"SummitLinter", | |
"Sync Settings", | |
"Tomorrow Night Italics Color Scheme" | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"added_words": | |
[ | |
"enablement" | |
], | |
"auto_complete_triggers": | |
[ | |
{ | |
"characters": ".", | |
"selector": "source.js" | |
} | |
], | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/Tomorrow Night Italics Color Scheme/Tomorrow-Night-Italics.tmTheme", | |
"edge_sidebar_font_large": true, | |
"folder_exclude_patterns": | |
[ | |
".svn", | |
".git", | |
".hg", | |
"CVS", | |
"node_modules" | |
], | |
"font_face": "Fira Code", | |
"font_options": | |
[ | |
"subpixel_antialias", | |
"dlig" | |
], | |
"font_size": 12, | |
"highlight_line": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"line_padding_bottom": 2, | |
"line_padding_top": 2, | |
"match_brackets": false, | |
"match_brackets_angle": false, | |
"match_brackets_braces": false, | |
"match_brackets_content": false, | |
"match_brackets_square": false, | |
"material_theme_tabs_autowidth": true, | |
"material_theme_tabs_separator": true, | |
"rulers": | |
[ | |
120 | |
], | |
"tab_size": 2, | |
"theme": "gruvbox.sublime-theme", | |
"translate_tabs_to_spaces": true, | |
"trim_trailing_white_space_on_save": true, | |
"word_wrap": false | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SublimeLinter Settings - User | |
{ | |
"linters": { | |
"eslint": { | |
"disabled": false, | |
"env": { "PATH": "/usr/local/bin" } | |
}, | |
}, | |
"gutter_theme": "Circle" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment