aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/ckaznocha/intrange/README.md
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2025-01-22 16:07:17 +0100
committerTaras Madan <tarasmadan@google.com>2025-01-23 10:42:36 +0000
commit7b4377ad9d8a7205416df8d6217ef2b010f89481 (patch)
treee6fec4fd12ff807a16d847923f501075bf71d16c /vendor/github.com/ckaznocha/intrange/README.md
parent475a4c203afb8b7d3af51c4fd32bb170ff32a45e (diff)
vendor: delete
Diffstat (limited to 'vendor/github.com/ckaznocha/intrange/README.md')
-rw-r--r--vendor/github.com/ckaznocha/intrange/README.md90
1 files changed, 0 insertions, 90 deletions
diff --git a/vendor/github.com/ckaznocha/intrange/README.md b/vendor/github.com/ckaznocha/intrange/README.md
deleted file mode 100644
index 9cac46220..000000000
--- a/vendor/github.com/ckaznocha/intrange/README.md
+++ /dev/null
@@ -1,90 +0,0 @@
-# intrange
-
-[![Build Status](https://github.com/ckaznocha/intrange/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/ckaznocha/intrange/actions/workflows/ci.yml)
-[![Release](http://img.shields.io/github/release/ckaznocha/intrange.svg)](https://github.com/ckaznocha/intrange/releases/latest)
-[![GoDoc](https://godoc.org/github.com/ckaznocha/intrange?status.svg)](https://godoc.org/github.com/ckaznocha/intrange)
-
-intrange is a program for checking for loops that could use the [Go 1.22](https://go.dev/ref/spec#Go_1.22) integer
-range feature.
-
-## Installation
-
-```bash
-go install github.com/ckaznocha/intrange/cmd/intrange@latest
-```
-
-## Usage
-
-```bash
-go vet -vettool=$(which intrange) ./...
-```
-
-## Examples
-
-### A loop that uses the value of the loop variable
-
-```go
-package main
-
-import "fmt"
-
-func main() {
- for i := 0; i < 10; i++ {
- fmt.Println(i)
- }
-}
-```
-
-Running `intrange` on the above code will produce the following output:
-
-```bash
-main.go:5:2: for loop can be changed to use an integer range (Go 1.22+)
-```
-
-The loop can be rewritten as:
-
-```go
-package main
-
-import "fmt"
-
-func main() {
- for i := range 10 {
- fmt.Println(i)
- }
-}
-```
-
-### A loop that does not use the value of the loop variable
-
-```go
-package main
-
-import "fmt"
-
-func main() {
- for i := 0; i < 10; i++ {
- fmt.Println("Hello again!")
- }
-}
-```
-
-Running `intrange` on the above code will produce the following output:
-
-```bash
-main.go:5:2: for loop can be changed to use an integer range (Go 1.22+)
-```
-
-The loop can be rewritten as:
-
-```go
-package main
-
-import "fmt"
-
-func main() {
- for range 10 {
- fmt.Println("Hello again!")
- }
-}
-```