frostfs-node/cmd
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
..
frostfs-adm [#1341] .golangci.yml: Replace exportloopref with copyloopvar 2024-08-28 15:44:41 +00:00
frostfs-cli [#1341] .golangci.yml: Replace exportloopref with copyloopvar 2024-08-28 15:44:41 +00:00
frostfs-ir [#1135] ir: Add healthstatus RECONFIGURING 2024-08-15 16:54:45 +03:00
frostfs-lens [#1302] writecache: Allow to specify custom page size 2024-08-09 12:12:07 +03:00
frostfs-node [#1309] test: Clean up config after tests 2024-08-22 08:49:10 +00:00
internal/common [#973] node: Resolve perfsprint linter 2024-03-11 17:55:50 +03:00