diff --git a/sonar-project.properties b/sonar-project.properties deleted file mode 100644 index b8b9b60..0000000 --- a/sonar-project.properties +++ /dev/null @@ -1,8 +0,0 @@ -sonar.projectKey=github.com/jedib0t/go-pretty -sonar.projectName=go-pretty - -sonar.sources=. -sonar.exclusions=**/*_test.go - -sonar.tests=. -sonar.test.inclusions=**/*_test.go diff --git a/table/render_bidi_test.go b/table/render_bidi_test.go index 79b7d95..51d7825 100644 --- a/table/render_bidi_test.go +++ b/table/render_bidi_test.go @@ -7,6 +7,7 @@ import ( ) func TestTable_Render_BiDiText(t *testing.T) { + // sonar: ignore from here table := Table{} table.AppendHeader(Row{"תאריך", "סכום", "מחלקה", "תגים"}) table.AppendRow(Row{"2020-01-01", 5.0, "מחלקה1", []string{"תג1", "תג2"}}) @@ -49,4 +50,5 @@ func TestTable_Render_BiDiText(t *testing.T) { ‫+---+------------+------+--------+-----------+ ‫| | ‫סהכ | ‫30 | | | ‫+---+------------+------+--------+-----------+`) + // sonar: ignore to here }