Browse Source

Removes emptry string defaults

main
Eric Amodio 7 years ago
parent
commit
c500293032
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      package.json

+ 4
- 2
package.json View File

@ -85,7 +85,7 @@
}, },
"gitlens.blame.annotation.dateFormat": { "gitlens.blame.annotation.dateFormat": {
"type": "string", "type": "string",
"default": "",
"default": null,
"description": "Specifies the date format of how absolute dates will be shown in the blame annotations. See https://momentjs.com/docs/#/displaying/format/ for valid formats" "description": "Specifies the date format of how absolute dates will be shown in the blame annotations. See https://momentjs.com/docs/#/displaying/format/ for valid formats"
}, },
"gitlens.blame.annotation.message": { "gitlens.blame.annotation.message": {
@ -293,7 +293,7 @@
}, },
"gitlens.statusBar.dateFormat": { "gitlens.statusBar.dateFormat": {
"type": "string", "type": "string",
"default": "",
"default": null,
"description": "Specifies the date format of how absolute dates will be shown in the blame status bar. See https://momentjs.com/docs/#/displaying/format/ for valid formats" "description": "Specifies the date format of how absolute dates will be shown in the blame status bar. See https://momentjs.com/docs/#/displaying/format/ for valid formats"
}, },
"gitlens.advanced.caching.enabled": { "gitlens.advanced.caching.enabled": {
@ -833,6 +833,7 @@
"vscode:prepublish": "tsc -p ./" "vscode:prepublish": "tsc -p ./"
}, },
"dependencies": { "dependencies": {
"applicationinsights": "^0.19.0",
"copy-paste": "^1.3.0", "copy-paste": "^1.3.0",
"ignore": "^3.2.6", "ignore": "^3.2.6",
"lodash.debounce": "^4.0.8", "lodash.debounce": "^4.0.8",
@ -844,6 +845,7 @@
"tmp": "^0.0.31" "tmp": "^0.0.31"
}, },
"devDependencies": { "devDependencies": {
"@types/applicationinsights": "^0.15.33",
"@types/copy-paste": "^1.1.30", "@types/copy-paste": "^1.1.30",
"@types/mocha": "^2.2.40", "@types/mocha": "^2.2.40",
"@types/node": "^7.0.11", "@types/node": "^7.0.11",

Loading…
Cancel
Save