-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[lint] Add golangci-lint automation + fix existing issues
- Loading branch information
Tomasz Jonak
committed
Nov 21, 2023
1 parent
662cd54
commit 1076a69
Showing
21 changed files
with
396 additions
and
343 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
name: golangci-lint | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
permissions: | ||
contents: read | ||
pull-requests: read | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
fetch-depth: "0" | ||
- name: Install system deps | ||
run: | | ||
sudo apt-get update && sudo apt-get install -y --no-install-recommends \ | ||
build-essential \ | ||
dh-autoreconf \ | ||
libjansson-dev \ | ||
libmagic-dev \ | ||
pkg-config \ | ||
libpcap-dev \ | ||
libcap-dev \ | ||
curl \ | ||
bison | ||
- name: Install yara | ||
run: | | ||
cd /tmp | ||
wget https://github.com/VirusTotal/yara/archive/refs/tags/v4.3.2.tar.gz | ||
tar -zxf v4.3.2.tar.gz | ||
cd yara-4.3.2 | ||
./bootstrap.sh | ||
./configure --prefix=$HOME/.local/yara --disable-dotnet --enable-magic --enable-cuckoo --disable-shared --enable-static | ||
make -j$(nproc) | ||
make install | ||
cd $HOME/.local | ||
tar -czf yara.tar.gz yara | ||
export PKG_CONFIG_PATH="$HOME/.local/yara/lib/pkgconfig" | ||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version: '1.21' | ||
cache: false | ||
- name: golangci-lint | ||
uses: golangci/golangci-lint-action@v3 | ||
with: | ||
version: v1.55 | ||
only-new-issues: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
linters: | ||
enable: | ||
- stylecheck | ||
- gocritic | ||
# - dupl | ||
- durationcheck | ||
# - goconst | ||
- gofmt | ||
- goimports | ||
# - misspell | ||
# - nestif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package constants | ||
|
||
const ( | ||
PLUGIN_NAME = "MalwareScanner" | ||
PluginName = "MalwareScanner" | ||
TempDirSuffix = "YaraHunter" | ||
ExtractedImageFilesDir = "ExtractedFiles" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
//nolint:stylecheck | ||
package constants | ||
|
||
const ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.