Skip to content

Instantly share code, notes, and snippets.

@zyphlar
Last active September 2, 2015 17:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zyphlar/cc325b7851f4810cb2e3 to your computer and use it in GitHub Desktop.
Save zyphlar/cc325b7851f4810cb2e3 to your computer and use it in GitHub Desktop.
Binary and Folder exclude patterns for Symfony projects (and in general)
{
"binary_file_patterns":
[
"*.jpg",
"*.jpeg",
"*.png",
"*.gif",
"*.ttf",
"*.tga",
"*.dds",
"*.ico",
"*.eot",
"*.pdf",
"*.swf",
"*.jar",
"*.zip",
"*.bin",
"*.img",
"*.tar",
"*.min.*",
"*.gz"
],
"folder_exclude_patterns":
[
".svn",
".git",
".hg",
"CVS",
"cache",
"sessions",
"web/bundles",
"web/css",
"web/js",
"vendor",
"phpunit-report"
],
"font_face": "Hack",
"font_size": 10,
"shift_tab_unindent": true,
"detect_indentation": false, // may not be what you want
"tab_size": 2, // may not be what you want
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment