mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-07-28 20:28:22 +00:00
* chore(atlantis): fix linter errors * fix superfluous-else * revert gitlab check * ignore stub funcs on azuredevops_client * remove fetch-depth * remove fail_on_error * fix plan_step_runner_test.go * more lint fixes --------- Co-authored-by: Dylan Page <dylan.page@autodesk.com>
33 lines
633 B
YAML
33 lines
633 B
YAML
linters-settings:
|
|
misspell:
|
|
# Correct spellings using locale preferences for US or UK.
|
|
# Default is to use a neutral variety of English.
|
|
# Setting locale to US will correct the British spelling of 'colour' to 'color'.
|
|
# locale: US
|
|
ignore-words:
|
|
# for gitlab notes api
|
|
- noteable
|
|
revive:
|
|
rules:
|
|
- name: dot-imports
|
|
disabled: true
|
|
|
|
linters:
|
|
enable:
|
|
- errcheck
|
|
- gochecknoinits
|
|
- gofmt
|
|
- gosec
|
|
- gosimple
|
|
- ineffassign
|
|
- misspell
|
|
- revive
|
|
- staticcheck
|
|
- typecheck
|
|
- unconvert
|
|
- unused
|
|
- vet
|
|
- vetshadow
|
|
run:
|
|
timeout: 10m
|