import-boss

command
v0.0.0-...-8167cfd Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 28, 2020 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Overview

import-boss enforces import restrictions in a given repository.

When a package is verified, import-boss looks for files called ".import-restrictions" in all directories between the package and the $GOPATH/src.

All imports of the package are checked against each "rule" in the found restriction files, climbing up the directory tree until the import matches one of the rules.

If the import does not match any of the rules, it is accepted.

In analogy, all incoming imports of the package are checked against each "inverse rule" in the found restriction files, climbing up the directory tree until the import matches one of the rules.

If the incoming import does not match any of the inverse rules, it is accepted.

A rule consists of three parts: * A SelectorRegexp, to select the import paths that the rule applies to. * A list of AllowedPrefixes * A list of ForbiddenPrefixes An import passes a rule of a matching selector if it matches at least one allowed prefix, but no forbidden prefix.

An example file looks like this:

{
  "Rules": [
    {
      "SelectorRegexp": "k8s[.]io",
      "AllowedPrefixes": [
        "k8s.io/gengo/examples",
        "k8s.io/kubernetes/third_party"
      ],
      "ForbiddenPrefixes": [
        "k8s.io/kubernetes/pkg/third_party/deprecated"
      ]
    },
    {
      "SelectorRegexp": "^unsafe$",
      "AllowedPrefixes": [
      ],
      "ForbiddenPrefixes": [
        ""
      ]
    }
  ],
  "InverseRules": [{
      "SelectorRegexp": "k8s[.]io",
      "AllowedPrefixes": [
        "k8s.io/same-repo",
        "k8s.io/kubernetes/pkg/legacy"
      ],
      "ForbiddenPrefixes": [
        "k8s.io/kubernetes/pkg/legacy/subpkg"
      ]
    },
    {
      "SelectorRegexp": "k8s[.]io",
      "Transitive": true,
      "AllowedPrefixes": [
        "k8s.io/
      ],
      "ForbiddenPrefixes": [
        "k8s.io/kubernetes/cmd/kubelet",
        "k8s.io/kubernetes/cmd/kubectl"
      ],
  ]
}

Note the second (non-inverse) rule explicitly matches the unsafe package, and forbids it ("" is a prefix of everything).

An import from another package passes an inverse rule with a matching selector if it matches at least one allowed prefix, but no forbidden prefix.

Note that the second InverseRule is transitive, the first only applies to direct imports.

Directories

Path Synopsis
Package generators has the generators for the import-boss utility.
Package generators has the generators for the import-boss utility.
tests
inverse/a
a only imports public packages.
a only imports public packages.
inverse/b
b only imports public and private packages.
b only imports public and private packages.
inverse/c
c imports the library root, which in turn imports the public and private packages.
c imports the library root, which in turn imports the public and private packages.
inverse/d
c imports non-prod code.
c imports non-prod code.
inverse/lib/nonprod
nonprod is non-production code that should not be linked into any outside package.
nonprod is non-production code that should not be linked into any outside package.
inverse/lib/quarantine
quarantine is inside the library, but should not import the private package.
quarantine is inside the library, but should not import the private package.
rules/b
b only public and private packages.
b only public and private packages.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL