frostfs-node/cmd/frostfs-cli
Evgenii Stratonikov 03976c6ed5 [#1341] .golangci.yml: Replace exportloopref with copyloopvar
exportloopref is deprecated.
gopatch:
```
@@
var index, value identifier
var slice expression
@@
for index, value := range slice {
...
-value := value
...
}

@@
var index, value identifier
var slice expression
@@
for index, value := range slice {
...
-index := index
...
}

@@
var value identifier
var channel expression
@@
for value := range channel {
...
-value := value
...
}
```

Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
2024-08-28 15:44:41 +00:00
..
docs [#986] cli: Allow add-rule command to parse new actions 2024-02-20 07:42:29 +00:00
internal [#1309] test: Clean up config after tests 2024-08-22 08:49:10 +00:00
modules [#1341] .golangci.yml: Replace exportloopref with copyloopvar 2024-08-28 15:44:41 +00:00
main.go Rename package name 2023-03-07 16:38:26 +03:00