{
    "window.zoomLevel": 2,
    "[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": "megacheck",
    "go.enableCodeLens": {
        "references": false,
        "runtest": true
    },
    "go.addTags": {
        "tags": "json",
        "options": "json=omitempty",
        "promptForTags": true,
        "transform": "snakecase"
    },

    "editor.fontFamily": "Fira Code",
    "editor.fontSize": 14,
    "editor.fontLigatures": true,


    "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

}