Remove template config.cson file

This old template file had several problems:

  * The entries in this file are already the schema defaults so they
    would get unset anyway when initially loaded
  * The file was in the old format that didn't have scope selectors
  * A race condition could occur when the file was copied, inited, and written
    to all during the very first run of Atom.

Closes #6226
This commit is contained in:
Kevin Sawicki 2015-04-07 11:43:35 -07:00
parent 9a64730916
commit 06b8195fb8
2 changed files with 0 additions and 8 deletions

View File

@ -1,7 +0,0 @@
'editor':
'fontSize': 16
'core':
'themes': [
'one-dark-ui'
'one-dark-syntax'
]

View File

@ -987,7 +987,6 @@ describe "Config", ->
expect(fs.existsSync(atom.config.configDirPath)).toBeTruthy()
expect(fs.existsSync(path.join(atom.config.configDirPath, 'packages'))).toBeTruthy()
expect(fs.isFileSync(path.join(atom.config.configDirPath, 'snippets.cson'))).toBeTruthy()
expect(fs.isFileSync(path.join(atom.config.configDirPath, 'config.cson'))).toBeTruthy()
expect(fs.isFileSync(path.join(atom.config.configDirPath, 'init.coffee'))).toBeTruthy()
expect(fs.isFileSync(path.join(atom.config.configDirPath, 'styles.less'))).toBeTruthy()