diff --git a/.vscode/settings.json b/.vscode/settings.json index 46c249c..20af2f6 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,11 +1,3 @@ // Place your settings in this file to overwrite default and user settings. { - // Specifies Lint tool name. - "go.lintTool": "gometalinter", - - // Flags to pass to Lint tool (e.g. ["-min_confidence=.8"]) - "go.lintFlags": [ - "--config=${workspaceRoot}/golint.json" - ] - } \ No newline at end of file diff --git a/golint.json b/golint.json deleted file mode 100644 index 6380714..0000000 --- a/golint.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "DisableAll": true, - "Enable": [ - "aligncheck", - "deadcode", - "dupl", - "errcheck", - "gas", - "goconst", - "gocyclo", - "gofmt", - "goimports", - "golint", - "gotype", - "ineffassign", - "interfacer", - "lll", - "megacheck", - "misspell", - "structcheck", - "test", - "testify", - "unconvert", - "varcheck", - "vet", - "vetshadow" - ], - "Aggregate": true, - "Concurrency": 16, - "Cyclo": 60, - "Deadline": "60s", - "DuplThreshold": 50, - "EnableGC": true, - "LineLength": 120, - "MinConfidence": 0.8, - "MinOccurrences": 3, - "MinConstLength": 3, - "Sort": ["severity"] -} \ No newline at end of file