mirror of
https://github.com/atom/atom.git
synced 2026-01-24 06:18:03 -05:00
Use long opts for readability
This commit is contained in:
@@ -13,9 +13,9 @@ class LoadPathsTask
|
||||
ignoreGitIgnoredFiles = config.get('core.hideGitIgnoredFiles')
|
||||
|
||||
command = require.resolve 'nak'
|
||||
args = ['-l', rootPath]
|
||||
args = ['--list', rootPath]
|
||||
args.unshift('--addVCSIgnores') if config.get('nak.addVCSIgnores')
|
||||
args.unshift('-d', ignoredNames.join(',')) if ignoredNames.length > 0
|
||||
args.unshift('--ignore', ignoredNames.join(',')) if ignoredNames.length > 0
|
||||
args.unshift('--follow')
|
||||
|
||||
paths = []
|
||||
|
||||
Reference in New Issue
Block a user