mirror of
https://github.com/siderolabs/talos.git
synced 2025-11-06 19:31:13 +01:00
This integrates [importvet](https://github.com/talos-systems/importvet) into `lint` target. First rule file was added for public packages `pkg/` which shouldn't depend on other parts of Talos tree (except for the API definitions). Only one change: `internal/cis` was moved under single user - `pkg/config/internal/cis` to satisfy the rules. Signed-off-by: Andrey Smirnov <smirnov.andrey@gmail.com>
15 lines
389 B
Go
15 lines
389 B
Go
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
package cis_test
|
|
|
|
import "testing"
|
|
|
|
func TestEmpty(t *testing.T) {
|
|
// added for accurate coverage estimation
|
|
//
|
|
// please remove it once any unit-test is added
|
|
// for this package
|
|
}
|