1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-07-13 01:20:35 +02:00

Linter Cleanups (#294)

* sync with MontFerret/ferret

* fix --param handling

When params is converted to map it uses strings.Split,
which slices a string into all substrings separated by :.

* remove impossible conditions nil != nil

* delete ineffectual assignments

* replace '+= 1' with '++'

* remove useless comparison with nil

* merge variable declarations

* remove bool comparison

* fix imports

* fix imports

* delete unused file

* use copy instead of loop

* delete unused DummyInterface

* remove unnecassary break statements

* tidy modules
This commit is contained in:
3timeslazy
2019-05-04 00:10:34 +03:00
committed by Tim Voronov
parent 69816e8b54
commit acf2f13dcb
50 changed files with 105 additions and 355 deletions

View File

@ -290,7 +290,7 @@ func TestArray(t *testing.T) {
counter := 0
arr.ForEach(func(value core.Value, idx int) bool {
counter += 1
counter++
return true
})
@ -303,7 +303,7 @@ func TestArray(t *testing.T) {
counter := 0
arr.ForEach(func(value core.Value, idx int) bool {
counter += 1
counter++
return true
})
@ -323,7 +323,7 @@ func TestArray(t *testing.T) {
counter := 0
arr.ForEach(func(value core.Value, idx int) bool {
counter += 1
counter++
return value.Compare(values.NewInt(threshold)) == -1
})