qa/spelling: Add Codespell support (#1121)

* Add codespell support

* Fix paths

* Add HTML files to exclusion list
This commit is contained in:
Adrian Gallagher
2023-01-30 12:36:56 +11:00
committed by GitHub
parent c785ae73a7
commit a79e0d2b3e
108 changed files with 359 additions and 318 deletions

View File

@@ -638,7 +638,7 @@ func TestLoadFromDatabase(t *testing.T) {
t.Fatal(err)
}
if ret.Exchange != testExchanges[0].Name {
t.Fatalf("uncorrect data returned: %v", ret.Exchange)
t.Fatalf("incorrect data returned: %v", ret.Exchange)
}
err = testhelpers.CloseDatabase(dbConn)

View File

@@ -344,7 +344,7 @@ func (o *OHLC) GetRelativeStrengthIndex(option []float64, period int64) ([]float
}
if len(option) <= 2 {
// TODO: Check why 2 data points causes panic.
return nil, fmt.Errorf("get relative strength index %w, requires atleast 3 data points", errNotEnoughData)
return nil, fmt.Errorf("get relative strength index %w, requires at least 3 data points", errNotEnoughData)
}
if int(period) > len(option) {
return nil, fmt.Errorf("get exponential moving average %w exceeds data length, please reduce",