Last active
December 30, 2015 12:09
-
-
Save eliangcs/7827265 to your computer and use it in GitHub Desktop.
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
// Sublime Text | |
{ | |
"color_scheme": "Packages/Color Scheme - Default/Twilight.tmTheme", | |
"font_face": "DejaVu Sans Mono", | |
"font_size": 10, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"translate_tabs_to_spaces": true, | |
"trim_trailing_white_space_on_save": true | |
} | |
// Sublime Text Flake8 | |
{ | |
// set desired max line length | |
"pep8_max_line_length": 200, | |
// skip errors and warnings (e.g. ["E303", E4", "W"]) | |
"ignore": ["E201", "E202"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment