From 5dc716689bd6ee072d59605ecf1944d46f4ef106 Mon Sep 17 00:00:00 2001 From: Daniel Gospodinow Date: Sat, 27 Jan 2024 08:11:01 +0000 Subject: [PATCH] Fix linting issues --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cdc2ffd..e261d8a 100644 --- a/README.md +++ b/README.md @@ -9,13 +9,15 @@ This is a simple GitHub Action that checks Golang codebases for potential Nil pa Behind the hood, it uses Uber's [nilaway](https://github.com/qbaware/nilaway-action) static analysis tool. More useful information about it can be found in [this](https://www.uber.com/en-GB/blog/nilaway-practical-nil-panic-detection-for-go/) -Uber blog post or on their GitHub [repo](https://github.com/uber-go/nilaway). +Uber blog post or on their GitHub [repository](https://github.com/uber-go/nilaway). ## How To Use ### Figure Out The Inputs -As of now, the only input is the `package-to-scan` variable. This is the path to the Golang package you want to analyze. E.g. `./services/backend/...`. +As of now, the only input is the `package-to-scan` variable. +This is the path to the Golang package you want to analyze. +E.g. `./services/backend/...`. ### Modify Your Action