-
Notifications
You must be signed in to change notification settings - Fork 5
/
Kenya One.code-workspace
105 lines (105 loc) · 2.96 KB
/
Kenya One.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"folders": [
{
"path": "."
}
],
"settings": {
"psi-header.config": {
"license": "MIT"
},
"psi-header.changes-tracking": {
"isActive": true,
"modAuthor": "Modified By: ",
"modDate": "Last Modified: ",
"modDateFormat": "date",
"include": [],
"exclude": ["markdown", "json"],
"excludeGlob": ["out/**", "src/**/*.xyz"],
"autoHeader": "manualSave"
},
"psi-header.license-text": [
"This file can be copied and/or distributed without the express",
"permission of KENYA ONE PROJECT"
],
"psi-header.variables": [
["company", "KENYA ONE PROJECT"],
["author", "Geoffrey Nyaga Kinyua"],
["authoremail", "[email protected]"]
],
"psi-header.lang-config": [
{
"language": "lua",
"begin": "--[[",
"prefix": "--",
"end": "--]]",
"blankLinesAfter": 0
},
{
"language": "python",
"begin": "##################################################################################",
"prefix": "# ",
"suffix": "#",
"lineLength": 82,
"end": "##################################################################################",
"blankLinesAfter": 0,
"beforeHeader": ["#!/usr/bin/env python3", "# -*- coding:utf-8 -*-"]
},
{
"language": "javascript",
"begin": "/**",
"prefix": " * ",
"end": " */",
"blankLinesAfter": 0,
"forceToTop": false
},
{
"language": "typescript",
"mapTo": "javascript"
}
],
"psi-header.templates": [
{
"language": "*",
"template": [
"File: <<filepath>>",
"Project: <<projectpath>>",
"Created Date: <<filecreated('dddd, MMMM Do YYYY, h:mm:ss a')>>",
"Author: <<author>> ( <<<authoremail>>> )",
"-----",
"Last Modified: <<filecreated('dddd MMMM Do YYYY h:mm:ss a')>>",
"Modified By: <<author>> ( <<<authoremail>>> )",
"-----",
"<<licensetext>>",
"-----",
"Copyright (c) <<year>> <<company>>"
],
"changeLogCaption": "HISTORY:",
"changeLogHeaderLineCount": 2,
"changeLogEntryTemplate": [
"<<dateformat('YYYY-MM-DD')>>\t<<initials>>\t"
]
},
{
"language": "javascript",
"template": [
"File: <<filepath>>",
"Project: <<projectpath>>",
"Created Date: <<filecreated('dddd, MMMM Do YYYY, h:mm:ss a')>>",
"Author: <<author>> ( <<<authoremail>>> )",
"-----",
"Last Modified: <<filecreated('dddd MMMM Do YYYY h:mm:ss a')>>",
"Modified By: <<author>> ( <<<authoremail>>> )",
"-----",
"Copyright (c) <<year>> <<company>>",
"-----",
"<<licensetext>>"
]
},
{
"language": "typescript",
"mapTo": "javascript"
}
]
}
}