No description
Find a file
Alexander Chuprov df29d08821 [#5] linters: refactoring
Signed-off-by: Alexander Chuprov <a.chuprov@yadro.com>
2023-07-31 12:59:51 +03:00
.forgejo/workflows [#3] .forgejo: add tests.yml 2023-07-18 17:36:04 +03:00
internal/analyzers/noliteral [#5] linters: refactoring 2023-07-31 12:59:51 +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 Initial commit 2023-07-17 10:51:48 +00:00
.pre-commit-config.yaml Initial commit 2023-07-17 10:51:48 +00:00
go.mod [#1] linters: add logs linter 2023-07-18 11:16:27 +03:00
go.sum [#1] linters: add logs linter 2023-07-18 11:16:27 +03:00
main.go [#5] linters: refactoring 2023-07-31 12:59:51 +03:00
Makefile [#5] linters: refactoring 2023-07-31 12:59:51 +03:00
README.md [#5] linters: refactoring 2023-07-31 12:59:51 +03:00

linters

Overview

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

Available linters

Name Description
noliteral The tool prohibits the use of literal string arguments in logging functions

Installation

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

Usage

Add to .golangci.yml


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

    linters:
        enable:
            custom-linters