💾 Archived View for source.community › jeffdecola › my-go-tools › raw › develop › .codeclimate.yml captured on 2023-07-10 at 13:41:49.
⬅️ Previous capture (2021-12-17)
-=-=-=-=-=-=-
# .codeclimate.yml version: "2" # prepare: Actions to perform before analysis begins # fetch: Remote files to fetch (files are placed relative to the repo's root directory) # url: url to fetch # path: destination relative to repo's root directory # checks: Configuration of maintainability checks # <name> # enabled: true|false # config: check configuration # plugins: Enable optional engines to run in addition to your analysis # <name> # enabled: true|false # channel: alternate channel to use (stable is default) # config: plugin configuration plugins: markdownlint: enabled: true shellcheck: enabled: true gofmt: enabled: true golint: enabled: true config: min_confidence: 0.9 govet: enabled: true # exclude_patterns: Exclude files and/or directories from analysis # - <pattern> # - <pattern> exclude_patterns: - "docs/"