From 0b86a371bbf05d09f5857013f2fe0ccf9c12474c Mon Sep 17 00:00:00 2001 From: Carl Bergquist Date: Thu, 5 Mar 2020 19:51:14 +0100 Subject: [PATCH] remove section about alias imports (#22585) this is not relevant anymore since we removed all aliased imports. --- contribute/style-guides/backend.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/contribute/style-guides/backend.md b/contribute/style-guides/backend.md index 77c5e1656fa..be713a7e375 100644 --- a/contribute/style-guides/backend.md +++ b/contribute/style-guides/backend.md @@ -39,7 +39,3 @@ Tests must use the standard library, `testing`. For assertions, prefer using [te The majority of our tests uses [GoConvey](http://goconvey.co/) but that's something we want to avoid going forward. In the `sqlstore` package we do database operations in tests and while some might say that's not suited for unit tests. We think they are fast enough and provide a lot of value. - -## General guidelines - -- Avoid using import aliases, e.g. `import m "github.com/grafana/grafana/pkg/models"`.