No description
ci
Find a file
Alexander Chuprov c01590a2c4
All checks were successful
Tests and linters / Build lib (pull_request) Successful in 29s
Tests and linters / Tests (pull_request) Successful in 30s
Tests and linters / Lint (pull_request) Successful in 37s
Tests and linters / Staticcheck (pull_request) Successful in 48s
[#30] noliteral: Make 'enable' flag optional
Signed-off-by: Alexander Chuprov <a.chuprov@yadro.com>
2025-04-03 16:45:18 +03:00
.forgejo/workflows [#28] Use selfhosted actions mirror 2024-12-12 11:53:59 +03:00
internal/analyzers [#30] noliteral: Make 'enable' flag optional 2025-04-03 16:45:18 +03:00
pkg/ast-utils [#10] linters: Add support for the nolint comment 2023-08-17 16:24:25 +03:00
.gitattributes Initial commit 2023-07-17 10:51:48 +00:00
.gitignore Initial commit 2023-07-17 10:51:48 +00:00
.gitlint Initial commit 2023-07-17 10:51:48 +00:00
.golangci.yml [#25] .golangci.yml: Replace exportloopref with copyloopvar 2024-08-28 14:23:46 +03:00
.pre-commit-config.yaml Initial commit 2023-07-17 10:51:48 +00:00
CODEOWNERS [#27] Add CODEOWNERS 2025-02-17 10:18:36 +03:00
go.mod [#31] go.mod: Update version 2025-03-20 17:36:59 +03:00
go.sum [#31] go.mod: Update version 2025-03-20 17:36:59 +03:00
LICENSE [#19] docs: Add license 2024-02-12 17:51:17 +03:00
main.go [#10] linters: Add useStrconv linter 2023-08-17 16:24:21 +03:00
Makefile [#25] Makefile: Use -trimpath while building 2024-08-28 14:23:46 +03:00
README.md [#30] noliteral: Allow configuring disallowed literal position 2025-04-03 16:37:18 +03:00

linters

Overview

linters is a project that enables the integration of custom linting rules into the golangci-lint framework.

Usage

Add to .golangci.yml


    linters-settings:
    custom:
        truecloudlab-linters:
            path: <Path to the directory with libraries>
            original-url: git.frostfs.info/TrueCloudLab/linters


    linters:
        enable:
            truecloudlab-linters

Installation

    git clone git.frostfs.info/TrueCloudLab/linters
    cd linters
    make lib OUT_DIR=<Path to the directory with libraries>

Available linters

Name Description
noliteral The tool prohibits the use of literal string arguments in logging functions.
useStrconv The useStrconv linter recommends the utilization of strconv over fmt when performing string conversions of primitive data types. Detailed guidelines can be found in the official Uber Go Style Guide.

Linters Configuration

Settings via a configuration file are available if golangci-lint >= 1.5.4 is used

noliteral

File Configuration
linters-settings:
    custom:
        truecloudlab-linters:
            path: .bin/external_linters.so
            original-url: git.frostfs.info/TrueCloudLab/linters.git
            settings:
                noliteral:
                    enable: true # optional
                    target-methods: ["reportFlushError", "reportError"] # optional. Enabled by default "Debug", "Info", "Warn", "Error"
                    disable-packages: ["pkg1", "pkg2"] # List of packages for which the check should be disabled.
                    constants-package: "git.frostfs.info/rep/logs" # if not set, then the check is disabled
                    position: 1 # Optional. Argument position in a function that must not be literals. Default: 0.

useStrconv

File Configuration
linters-settings:
    custom:
        truecloudlab-linters:
            path: .bin/external_linters.so
            original-url: git.frostfs.info/TrueCloudLab/linters.git
            settings:
                useStrconv: # optional
                    enable: true