Forked from jawinn/SublimeOnSaveBuild.sublime-settings
Created
February 22, 2018 09:08
-
-
Save mlbd/1a603c9d158c0ec4dab55e1332b55036 to your computer and use it in GitHub Desktop.
Regex to ignore SASS / LESS partials (files starting with underscore) from being built by SublimeOnSaveBuild
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
// UPDATED VERSION | |
{ | |
"filename_filter": "(/|\\\\|^)(?!_)(\\w+)\\.(css|js|sass|less|scss)$", | |
"build_on_save": 1 | |
} | |
// DEFAULT (for reference, in case you need it back) | |
{ | |
"filename_filter": "\\.(css|js|sass|less|scss)$", | |
"build_on_save": 1 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment