Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mlbd/1a603c9d158c0ec4dab55e1332b55036 to your computer and use it in GitHub Desktop.
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
// 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