From 8a237345a4e4211961a91ffa68149a9703efe1e9 Mon Sep 17 00:00:00 2001 From: Danil Ovchinnikov Date: Sun, 28 Jul 2024 02:41:34 +0700 Subject: [PATCH] renamed `run.skip-files` to `issues.exclude-dirs` --- .golangci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index d7df3eb6..275ff372 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,11 +1,5 @@ run: timeout: 3m - skip-files: - - php/parser/scanner/scanner.go - - php/parser/scanner/lexer_tokens.go - - php/parser/scanner/lexer.go - - php/parser/printer/printer.go - - php/parser/printer/pretty_printer.go linters: enable: @@ -44,3 +38,9 @@ issues: - path: cmd/stubs/phpstorm_stubs.go linters: - gofmt + exclude-dirs: + - php/parser/scanner/scanner.go + - php/parser/scanner/lexer_tokens.go + - php/parser/scanner/lexer.go + - php/parser/printer/printer.go + - php/parser/printer/pretty_printer.go