Adds default date format

This commit is contained in:
Eric Amodio
2017-06-12 11:06:56 -04:00
parent 64ae82075e
commit 6f3441a9e7
11 changed files with 45 additions and 23 deletions

View File

@@ -216,7 +216,7 @@ export interface IConfig {
file: {
gutter: {
format: string;
dateFormat: string;
dateFormat: string | null;
compact: boolean;
heatmap: {
enabled: boolean;
@@ -252,7 +252,7 @@ export interface IConfig {
trailing: {
format: string;
dateFormat: string;
dateFormat: string | null;
hover: {
changes: boolean;
details: boolean;
@@ -301,12 +301,14 @@ export interface IConfig {
debug: boolean;
};
defaultDateFormat: string | null;
statusBar: {
enabled: boolean;
alignment: 'left' | 'right';
command: StatusBarCommand;
format: string;
dateFormat: string;
dateFormat: string | null;
};
strings: {