Created
March 16, 2018 12:43
-
-
Save mauroreisvieira/9d820e821c9a3b2f7b57aa4716680d74 to your computer and use it in GitHub Desktop.
Exemple of Project Settings in Sublime Text
This file contains 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
{ | |
"folders": | |
[ | |
{ | |
"path": "/Users/mauroreisvieira/Documents/FOLDER", | |
"folder_exclude_patterns": | |
[ | |
".git", | |
"tests", | |
"node_modules" | |
], | |
"file_exclude_patterns": [ | |
"*.sublime*", | |
"*.log" | |
], | |
} | |
], | |
"settings": | |
{ | |
"rulers": | |
[ | |
140 | |
] | |
}, | |
"SublimeLinter": | |
{ | |
"linters": | |
{ | |
"tslint": { | |
"excludes": [ | |
"**/node_modules/**" | |
] | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment