Merge pull request #14417 from atom/version-pinned-packages

Add config schema for version pinned packages
This commit is contained in:
Lee Dohm
2017-05-15 13:45:08 -07:00
committed by GitHub

View File

@@ -34,6 +34,16 @@ const configSchema = {
description: 'List of names of installed packages which are not loaded at startup.'
},
versionPinnedPackages: {
type: 'array',
default: [],
items: {
type: 'string'
},
description: 'List of names of installed packages which are not automatically updated.'
},
customFileTypes: {
type: 'object',
default: {},