Commit f169b312 authored by Roshan Patil's avatar Roshan Patil
Browse files

testing data added

parent 17302a3d
5 merge requests!23Devbranch to Master,!10Filehelper,!9Filehelper,!8Filehelper,!7Filehelper
Showing with 189 additions and 0 deletions
File added
{
"git.enabled": false,
"git.autofetch": false,
"window.zoomLevel": 1,
"[go]": {},
"go.useCodeSnippetsOnFunctionSuggest": false,
"go.autocompleteUnimportedPackages": true,
"go.liveErrors": {
"enabled": true,
"delay": 500
},
"go.editorContextMenuCommands": {
"toggleTestFile": true,
"addTags": true,
"removeTags": false,
"testAtCursor": true,
"testFile": true,
"testPackage": true,
"generateTestForFunction": true,
"generateTestForFile": true,
"generateTestForPackage": true,
"addImport": true,
"testCoverage": true
},
"go.lintTool": "gometalinter",
"go.enableCodeLens": {
"references": false,
"runtest": true
},
"go.addTags": {
"tags": "json",
"options": "json=omitempty",
"promptForTags": true,
"transform": "snakecase"
},
"todohighlight.isEnable": true,
"todohighlight.isCaseSensitive": true,
"todohighlight.keywords": [
"DEBUG:",
"REVIEW:",
{
"text": "BUG:",
"color": "white",
"backgroundColor": "#c94c4c",
"overviewRulerColor": "grey",
"isWholeLine": true
},
{
"text": "NOTE:",
"color": "black",
"backgroundColor": "#b1cbbb"
// "overviewRulerColor": "grey"
},
{
"text": "FIXME:",
"color": "black",
"backgroundColor": "#ffab00",
"isWholeLine": true
// "overviewRulerColor": "grey"
},
{
"text": "HACK:",
"color": "#000",
"isWholeLine": false
},
{
"text": "TODO:",
"color": "black",
"borderRadius": "2px", //NOTE: using borderRadius along with `border` or you will see nothing change
"backgroundColor": "#92a8d1"
//other styling properties goes here ...
},
{
"text": "TICKET:",
"color": "black",
"borderRadius": "2px", //NOTE: using borderRadius along with `border` or you will see nothing change
"backgroundColor": "#80ced6"
//other styling properties goes here ...
}
],
// "todohighlight.keywordsPattern": "TODO:|FIXME:|\\(([^)]+)\\)", //highlight `TODO:`,`FIXME:` and content between parentheses
"todohighlight.defaultStyle": {
"color": "red",
"backgroundColor": "#ffab00",
"overviewRulerColor": "#ffab00",
"cursor": "pointer",
// "border":"1px solid #eee",
"borderRadius": "4px",
"isWholeLine": false
//other styling properties goes here ...
},
"todohighlight.include": "{**/*.js,**/*.jsx,**/*.ts,**/*.tsx,**/*.html,**/*.php,**/*.css,**/*.scss}",
"todohighlight.exclude": "{**/node_modules/**,**/bower_components/**,**/dist/**,**/build/**,**/.vscode/**,**/_output/**,**/*.min.*,**/*.map}",
"todohighlight.maxFilesForSearch": 1120,
"todohighlight.toggleURI": true,
"editor.fontFamily": "Fira Code",
"editor.fontSize": 12,
"editor.fontLigatures": true,
"editor.wordWrap": "on",
"files.autoSave": "off",
"go.formatTool": "goimports",
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"terminal.explorerKind": "external",
"workbench.startupEditor": "newUntitledFile",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/vendor": true,
"**/vendor.orig": true,
"**/*.lock": true,
"**/*.toml": true,
"**/.gitlab-ci.yml": false
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true,
"**/vendor/**": true,
"**/vendor.orig/**": true
},
"git.confirmSync": true,
"git.autorefresh": false,
"git.ignoreMissingGitWarning": true,
"editor.acceptSuggestionOnCommitCharacter": true,
"sublimeTextKeymap.promptV3Features": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"vetur.format.defaultFormatter.js": "vscode-typescript",
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
"typescript.format.insertSpaceBeforeFunctionParenthesis": true,
"eslint.autoFixOnSave": true,
"vetur.format.defaultFormatter.html": "js-beautify-html",
"explorer.confirmDelete": false,
"gitlens.advanced.messages": {
"suppressGitDisabledWarning": true,
"suppressWelcomeNotice": true
},
"editor.wrappingIndent": "none",
"sync.gist": "3186b0d0ae70a6a84eec53b3d03e36a8",
"sync.lastUpload": "2018-04-09T07:06:08.041Z",
"sync.autoDownload": false,
"sync.autoUpload": false,
"sync.lastDownload": "",
"sync.forceDownload": false,
"sync.anonymousGist": false,
"sync.host": "",
"sync.pathPrefix": "",
"sync.quietSync": false,
"sync.askGistName": false,
"TodoParser": {
"exclude": [],
"include": [],
"folderExclude": [
"node_modules",
".vscode",
"github.com",
"go.uber.org",
"go4.org",
"golang.org",
"gopkg.in",
"honnef.co"
],
"only": [
"sub-folder/sub-sub-folder"
],
"showInProblems": true,
"markers": [
"NOTE:",
"REMINDER:",
[
"FIXME",
"Warning",
"BUG"
]
],
"autoDefaultMarkers": true
},
"go.gotoSymbol.includeImports": true,
"editor.accessibilitySupport": "off",
"sync.removeExtensions": true,
"sync.syncExtensions": true,
"go.coverOnSave": false
}
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment