Add ._* to ignored file names

Macs generate ._ files when saving to a filesystem other then HFS
In shared environments this is a big problem
This commit is contained in:
Alex Mayer
2015-01-16 12:13:08 -05:00
committed by Alex Mayer
parent f122125efc
commit b6eec80c9f

View File

@@ -9,7 +9,7 @@ module.exports =
properties:
ignoredNames:
type: 'array'
default: [".git", ".hg", ".svn", ".DS_Store", "Thumbs.db"]
default: [".git", ".hg", ".svn", ".DS_Store", "._*", "Thumbs.db"]
items:
type: 'string'
excludeVcsIgnoredPaths: