Skip to content

Commit

Permalink
chore: format code with prettier-standard
Browse files Browse the repository at this point in the history
  • Loading branch information
isomorphic-git-bot committed Nov 7, 2018
1 parent 45e2940 commit 22fd6bb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/models/GitConfig.js
Expand Up @@ -186,7 +186,10 @@ export class GitConfig {
} else {
if (configIndex !== -1) {
const config = this.parsedConfig[configIndex]
const modifiedConfig = Object.assign({}, config, { value, modified: true })
const modifiedConfig = Object.assign({}, config, {
value,
modified: true
})
if (append) {
this.parsedConfig.splice(configIndex + 1, 0, modifiedConfig)
} else {
Expand Down

0 comments on commit 22fd6bb

Please sign in to comment.