Skip to content

Commit

Permalink
minor fixes and removes cli
Browse files Browse the repository at this point in the history
Signed-off-by: Dusan Malusev <dusan@dusanmalusev.dev>
  • Loading branch information
CodeLieutenant committed Jul 13, 2023
1 parent bd4f91f commit 5ce3381
Show file tree
Hide file tree
Showing 50 changed files with 307 additions and 20,199 deletions.
4 changes: 0 additions & 4 deletions .agignore

This file was deleted.

20 changes: 20 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
on:
pull_request:
branches:
- master
- develop
workflow_call:
push:
branches:
- master
- develop
jobs:
golangci-lint:
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: golangci-lint
uses: reviewdog/action-golangci-lint@v2
with:
golangci_lint_flags: "--tests=false"
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -686,6 +686,5 @@ paket-files/

# End of https://www.gitignore.io/api/go,vim,c++,java,cuda,python,eclipse,intellij,sublimetext,visualstudio,visualstudiocode

main

fast_bind
.idea/
coverage.txt
26 changes: 0 additions & 26 deletions .travis.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .vscode/launch.json

This file was deleted.

266 changes: 179 additions & 87 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,89 +1,181 @@
{
"files.associations": {
"*main.yml": "ansible",
"*.mc": "cpp",
"*.cu": "cpp",
"*.m": "mathematica",
"*.mt": "mathematica",
"*.hpp": "cpp",
"*.cuh": "cuda",
"__locale": "cpp",
"ios": "cpp",
"memory": "cpp",
"utility": "cpp",
"iomanip": "cpp",
"cmath": "cpp",
"array": "cpp",
"string_view": "cpp",
"initializer_list": "cpp",
"ranges": "cpp",
"span": "cpp",
"string": "cpp",
"stdexcept": "cpp",
"any": "cpp",
"atomic": "cpp",
"bit": "cpp",
"*.tcc": "cpp",
"cctype": "cpp",
"chrono": "cpp",
"clocale": "cpp",
"codecvt": "cpp",
"compare": "cpp",
"concepts": "cpp",
"csignal": "cpp",
"cstdarg": "cpp",
"cstddef": "cpp",
"cstdint": "cpp",
"cstdio": "cpp",
"cstdlib": "cpp",
"cstring": "cpp",
"ctime": "cpp",
"cwchar": "cpp",
"cwctype": "cpp",
"deque": "cpp",
"forward_list": "cpp",
"map": "cpp",
"set": "cpp",
"unordered_map": "cpp",
"unordered_set": "cpp",
"vector": "cpp",
"exception": "cpp",
"algorithm": "cpp",
"functional": "cpp",
"iterator": "cpp",
"memory_resource": "cpp",
"numeric": "cpp",
"optional": "cpp",
"random": "cpp",
"ratio": "cpp",
"system_error": "cpp",
"tuple": "cpp",
"type_traits": "cpp",
"fstream": "cpp",
"iosfwd": "cpp",
"iostream": "cpp",
"istream": "cpp",
"limits": "cpp",
"new": "cpp",
"numbers": "cpp",
"ostream": "cpp",
"semaphore": "cpp",
"sstream": "cpp",
"stop_token": "cpp",
"streambuf": "cpp",
"thread": "cpp",
"typeinfo": "cpp",
"valarray": "cpp",
"bitset": "cpp",
"charconv": "cpp",
"cinttypes": "cpp",
"condition_variable": "cpp",
"list": "cpp",
"source_location": "cpp",
"format": "cpp",
"future": "cpp",
"mutex": "cpp",
"stdfloat": "cpp",
"variant": "cpp"
}
"go.testEnvVars": {
"CC": "gcc",
"CXX": "g++"
},
"go.toolsEnvVars": {
"CC": "gcc",
"CXX": "g++"
},
"go.diagnostic.vulncheck": "Imports",
"go.disableConcurrentTests": false,
"go.coverOnSave": true,
"go.coverOnSingleTest": true,
"go.coverOnSingleTestFile": true,
"go.inlayHints.assignVariableTypes": true,
"go.inlayHints.compositeLiteralFields": true,
"go.inlayHints.constantValues": true,
"go.inlayHints.compositeLiteralTypes": false,
"go.inlayHints.parameterNames": true,
"go.useLanguageServer": true,
"go.inferGopath": true,
"go.vetOnSave": "workspace",
"go.coverMode": "default",
"go.addTags": {
"tags": "json,bson,yaml",
"promptForTags": true
},
"go.coverageDecorator": {
"type": "gutter",
"coveredHighlightColor": "rgba(64,128,128,0.5)",
"uncoveredHighlightColor": "rgba(128,64,64,0.25)",
"coveredGutterStyle": "blockgreen",
"uncoveredGutterStyle": "blockred"
},
"go.formatTool": "gofumpt",
"go.coverShowCounts": true,
"go.enableCodeLens": {
"runtest": true
},
"gopls": {
"ui.codelenses": {
"gc_details": true,
"upgrade_dependency": true,
"generate": true,
"regenerate_cgo": true,
"test": true,
"tidy": true,
"run_govulncheck": true
},
"ui.diagnostic.analyses": {
"asmdecl": true,
"nilness": true,
"assign": true,
"atomic": true,
"atomicalign": true,
"bools": true,
"buildtags": true,
"cgocall": true,
"composites": true,
"copylocks": true,
"buildtag": true,
"errorsas": true,
"fieldalignment": true,
"deepequalerrors": true,
"fillreturns": true,
"fillstruct": true,
"nilfunc": true,
"ifaceassert": true,
"httpresponse": true,
"infertypeargs": true,
"lostcancel": true,
"loopclosure": true,
"printf": true,
"simplifycompositelit": true,
"stdmethods": true,
"shadow": true,
"structtag": true,
"timeformat": true,
"unmarshal": true,
"unreachable": true,
"unusedwrite": true,
"unusedvariable": true,
"unsafeptr": true,
"unusedresult": true,
"embed": true,
"nonewvars": true,
"noresultvalues": true,
"shift": true,
"simplifyrange": true,
"simplifyslice": true,
"sortslice": true,
"stringintconv": true,
"stubmethods": true,
"testinggoroutine": true,
"tests": true,
"undeclaredname": true,
"unusedparams": false
},
"ui.semanticTokens": true,
"ui.completion.experimentalPostfixCompletions": true,
"ui.completion.usePlaceholders": false,
"ui.completion.matcher": "Fuzzy",
"ui.diagnostic.staticcheck": true,
"ui.diagnostic.annotations": {
"bounds": true,
"escape": true,
"inline": true,
"nil": true
},
"ui.navigation.importShortcut": "Link",
"ui.noSemanticNumber": true,
"ui.navigation.symbolStyle": "Full",
"ui.noSemanticString": true,
"ui.documentation.linksInHover": false,
"ui.navigation.symbolMatcher": "FastFuzzy",
"ui.documentation.hoverKind": "FullDocumentation",
"ui.documentation.linkTarget": "pkg.go.dev",
"build.experimentalPackageCacheKey": true,
"build.memoryMode": "Normal",
"expandWorkspaceToModule": true,
"gofumpt": true
},
"go.lintTool": "golangci-lint",
"go.toolsManagement.autoUpdate": true,
"go.coverageOptions": "showCoveredCodeOnly",
"go.survey.prompt": false,
"go.editorContextMenuCommands": {
"removeTags": true,
"fillStruct": true,
"testFile": true,
"testPackage": true,
"generateTestForFile": true,
"generateTestForPackage": true,
"benchmarkAtCursor": true
},
"go.inlayHints.functionTypeParameters": true,
"go.inlayHints.rangeVariableTypes": true,
"go.installDependenciesWhenBuilding": true,
"go.logging.level": "info",
"go.testExplorer.showOutput": true,
"go.testExplorer.packageDisplayMode": "nested",
"go.testExplorer.showDynamicSubtestsInEditor": true,
"go.terminal.activateEnvironment": true,
"go.testTimeout": "30s",
"go.lintOnSave": "workspace",
"editor.fontLigatures": true,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.cursorBlinking": "smooth",
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"git.alwaysSignOff": true,
"git.autofetch": true,
"git.ignoreLimitWarning": true,
"files.eol": "\n",
"files.trimTrailingWhitespace": true,
"explorer.incrementalNaming": "smart",
"explorer.sortOrder": "type",
"[proto3]": {
"editor.defaultFormatter": "zxh404.vscode-proto3"
},
"files.exclude": {
"**/.idea/": true,
"**/.nuke": true,
"**/.vs": true,
"**/obj": true,
"**/TestResults": true
},
"debug.autoExpandLazyVariables": true,
"debug.console.closeOnEnd": true,
"debug.console.acceptSuggestionOnEnter": "on",
"debug.allowBreakpointsEverywhere": true,
"debug.console.historySuggestions": true,
"debug.console.collapseIdenticalLines": true,
"ansible.python.interpreterPath": "/bin/python"
}
Loading

0 comments on commit 5ce3381

Please sign in to comment.