Skip to content

Commit d24047a

Browse files
weweaaajohnpapa
andauthored
Add a comma at the end of the sentence (#124)
* Add a comma at the end of the sentence * more commas Co-authored-by: John Papa <[email protected]>
1 parent 56d81ec commit d24047a

File tree

2 files changed

+5
-23
lines changed

2 files changed

+5
-23
lines changed

.vscode/settings.json

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,5 @@
66
"search.exclude": {
77
"out": true
88
},
9-
"workbench.colorCustomizations": {
10-
"activityBar.background": "#1975d2",
11-
"activityBar.activeBackground": "#1975d2",
12-
"activityBar.activeBorder": "#f18dbf",
13-
"activityBar.foreground": "#e7e7e7",
14-
"activityBar.inactiveForeground": "#e7e7e799",
15-
"activityBarBadge.background": "#f18dbf",
16-
"activityBarBadge.foreground": "#15202b",
17-
"titleBar.activeBackground": "#1975d2",
18-
"titleBar.inactiveBackground": "#1975d299",
19-
"titleBar.activeForeground": "#e7e7e7",
20-
"titleBar.inactiveForeground": "#e7e7e799",
21-
"statusBar.background": "#1975d2",
22-
"statusBarItem.hoverBackground": "#378fe7",
23-
"statusBar.foreground": "#e7e7e7",
24-
"statusBar.debuggingBackground": "#d27619",
25-
"statusBar.debuggingForeground": "#15202b"
26-
},
279
"peacock.color": "#1975d2"
2810
}

snippets/typescript.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
"Angular Default Route Path": {
6969
"prefix": "a-route-path-default",
7070
"description": "Angular default route path",
71-
"body": ["{ path: '', pathMatch: 'full', redirectTo: '${1:path}' }$0"]
71+
"body": ["{ path: '', pathMatch: 'full', redirectTo: '${1:path}' },$0"]
7272
},
7373
"Angular Route Path with Children": {
7474
"prefix": "a-route-path-with-children",
@@ -80,18 +80,18 @@
8080
"\tchildren: [",
8181
"\t\t{ path: '${3:childpath}', component: ${4:ChildComponent} }",
8282
"\t]",
83-
"}$0"
83+
"},$0"
8484
]
8585
},
8686
"Angular 404 Route Path": {
8787
"prefix": "a-route-path-404",
8888
"description": "Angular 404 route path",
89-
"body": ["{ path: '**', component: ${1:PathNotFoundComponent} }$0"]
89+
"body": ["{ path: '**', component: ${1:PathNotFoundComponent} },$0"]
9090
},
9191
"Angular Eager Route Path": {
9292
"prefix": "a-route-path-eager",
9393
"description": "Angular eager route path",
94-
"body": ["{ path: '${1:path}', component: ${2:Name}Component },"]
94+
"body": ["{ path: '${1:path}', component: ${2:Name}Component },$0"]
9595
},
9696
"Angular Lazy Route Path": {
9797
"prefix": "a-route-path-lazy",
@@ -100,7 +100,7 @@
100100
"{",
101101
"\tpath: '${1:path}', ",
102102
"\tloadChildren: () => import('${2:lazy-path}').then(m => m.${3:lazy-module})",
103-
"},"
103+
"},$0"
104104
]
105105
},
106106
"Routing Params - Subscribe": {

0 commit comments

Comments
 (0)