This repository was archived by the owner on Jul 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
289 additions
and
233 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module.exports = { | ||
...require('gts/.prettierrc.json') | ||
} | ||
...require('gts/.prettierrc.json'), | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations. | ||
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp | ||
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations. | ||
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp | ||
|
||
// List of extensions which should be recommended for users of this workspace. | ||
"recommendations": ["cspell.cspell", "microsoft.eslint"], | ||
// List of extensions recommended by VS Code that should not be recommended for users of this workspace. | ||
"unwantedRecommendations": [] | ||
// List of extensions which should be recommended for users of this workspace. | ||
"recommendations": ["cspell.cspell", "microsoft.eslint"], | ||
// List of extensions recommended by VS Code that should not be recommended for users of this workspace. | ||
"unwantedRecommendations": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Launch Program", | ||
"skipFiles": ["<node_internals>/**"], | ||
"program": "${workspaceFolder}\\target\\core\\main.js", | ||
"preLaunchTask": "tsc: build - tsconfig.json", | ||
"outFiles": ["${workspaceFolder}/target/**/*.js"], | ||
"args": ["--enable-source-maps"] | ||
} | ||
] | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Launch Program", | ||
"skipFiles": ["<node_internals>/**"], | ||
"program": "${workspaceFolder}\\target\\core\\main.js", | ||
"preLaunchTask": "tsc: build - tsconfig.json", | ||
"outFiles": ["${workspaceFolder}/target/**/*.js"], | ||
"args": ["--enable-source-maps"] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
{ | ||
"cSpell.words": [ | ||
"channelmap", | ||
"INITDB", | ||
"loggingchannel", | ||
"popconfirm", | ||
"readcursor", | ||
"ringbuffer", | ||
"submod", | ||
"turingbot", | ||
"unlogged" | ||
], | ||
"yaml.schemas": { | ||
"kubernetes://schema/apps/v1%40deployment": "file:///c%3A/Users/James%20Boehme/Documents/GitHub/TuringBot/k8s/dev.yaml" | ||
} | ||
"cSpell.words": [ | ||
"channelmap", | ||
"INITDB", | ||
"loggingchannel", | ||
"popconfirm", | ||
"readcursor", | ||
"ringbuffer", | ||
"submod", | ||
"turingbot", | ||
"unlogged" | ||
], | ||
"yaml.schemas": { | ||
"kubernetes://schema/apps/v1%40deployment": "file:///c%3A/Users/James%20Boehme/Documents/GitHub/TuringBot/k8s/dev.yaml" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
{ | ||
"logging": { | ||
/** | ||
* Different levels of verbose logging. | ||
* | ||
* 0: No logging, no events will be logged | ||
* | ||
* 1: Very minimalist logging, including core and module starting, as well as module failure. | ||
* | ||
* 2: Slightly more verbose logging, may log some important info events | ||
* | ||
* 3: Will log commands used and all info passed through eventLogger | ||
* | ||
* 4: | ||
*/ | ||
"stdout": { | ||
"verboseLevel": 2 | ||
}, | ||
// It is an option to have the bot DM certain users for events, it's suggested to leave this disabled or on a very low level. | ||
"directMessageLogging": { | ||
"userIds": [], | ||
"verboseLevel": 0 | ||
}, | ||
"loggingChannel": { | ||
"loggingChannelId": "", | ||
"verboseLevel": 2 | ||
} | ||
"logging": { | ||
/** | ||
* Different levels of verbose logging. | ||
* | ||
* 0: No logging, no events will be logged | ||
* | ||
* 1: Very minimalist logging, including core and module starting, as well as module failure. | ||
* | ||
* 2: Slightly more verbose logging, may log some important info events | ||
* | ||
* 3: Will log commands used and all info passed through eventLogger | ||
* | ||
* 4: | ||
*/ | ||
"stdout": { | ||
"verboseLevel": 2 | ||
}, | ||
// It is an option to have the bot DM certain users for events, it's suggested to leave this disabled or on a very low level. | ||
"directMessageLogging": { | ||
"userIds": [], | ||
"verboseLevel": 0 | ||
}, | ||
"loggingChannel": { | ||
"loggingChannelId": "", | ||
"verboseLevel": 2 | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
{ | ||
"source": { | ||
"includePattern": ".+\\.(j|t)s(doc|x)?$", | ||
"include": ["src/core", "README.md", "package.json"] | ||
}, | ||
"plugins": ["plugins/markdown", "better-docs/typescript"], | ||
"opts": { | ||
"encoding": "utf8", | ||
"readme": "./README.md", | ||
"destination": "docs/jsdoc/", | ||
"recurse": true, | ||
"verbose": true, | ||
"template": "./node_modules/clean-jsdoc-theme", | ||
"theme_opts": { | ||
"default_theme": "dark" | ||
} | ||
}, | ||
"templates": { | ||
"cleverLinks": true | ||
}, | ||
"markdown": { | ||
"hardwrap": false, | ||
"idInHeadings": true | ||
}, | ||
"tags": { | ||
"allowUnknownTags": ["optional"] | ||
"source": { | ||
"includePattern": ".+\\.(j|t)s(doc|x)?$", | ||
"include": ["src/core", "README.md", "package.json"] | ||
}, | ||
"plugins": ["plugins/markdown", "better-docs/typescript"], | ||
"opts": { | ||
"encoding": "utf8", | ||
"readme": "./README.md", | ||
"destination": "docs/jsdoc/", | ||
"recurse": true, | ||
"verbose": true, | ||
"template": "./node_modules/clean-jsdoc-theme", | ||
"theme_opts": { | ||
"default_theme": "dark" | ||
} | ||
}, | ||
"templates": { | ||
"cleverLinks": true | ||
}, | ||
"markdown": { | ||
"hardwrap": false, | ||
"idInHeadings": true | ||
}, | ||
"tags": { | ||
"allowUnknownTags": ["optional"] | ||
} | ||
} |
Oops, something went wrong.