Complete linting for whole project

This commit is contained in:
Joel Elkins 2022-08-17 10:21:46 -05:00
parent b91eb62c34
commit ca5f956ef2
Signed by: joel
GPG Key ID: 133589DC38921AE2
15 changed files with 37 additions and 0 deletions

View File

@ -1,4 +1,6 @@
/*
Package cmd defines user commands accessible from the cli tool.
Copyright © 2022 Joel D. Elkins <joel@elkins.co>
Permission is hereby granted, free of charge, to any person obtaining a copy

View File

@ -1,4 +1,6 @@
/*
Package cmd defines user commands accessible from the cli tool.
Copyright © 2022 Joel D. Elkins <joel@elkins.co>
Permission is hereby granted, free of charge, to any person obtaining a copy

View File

@ -1,4 +1,6 @@
/*
Package cmd defines user commands accessible from the cli tool.
Copyright © 2022 Joel D. Elkins <joel@elkins.co>
Permission is hereby granted, free of charge, to any person obtaining a copy

View File

@ -1,4 +1,6 @@
/*
Package cmd defines user commands accessible from the cli tool.
Copyright © 2022 Joel D. Elkins <joel@elkins.co>
Permission is hereby granted, free of charge, to any person obtaining a copy

View File

@ -1,4 +1,6 @@
/*
Package cmd defines user commands accessible from the cli tool.
Copyright © 2022 Joel D. Elkins <joel@elkins.co>
Pepullission is hereby granted, free of charge, to any person obtaining a copy

View File

@ -1,4 +1,6 @@
/*
Package cmd defines user commands accessible from the cli tool.
Copyright © 2022 Joel D. Elkins <joel@elkins.co>
Permission is hereby granted, free of charge, to any person obtaining a copy

View File

@ -1,4 +1,6 @@
/*
Package cmd defines user commands accessible from the cli tool.
Copyright © 2022 Joel D. Elkins <joel@elkins.co>
Permission is hereby granted, free of charge, to any person obtaining a copy

View File

@ -1,4 +1,6 @@
/*
Package cmd defines user commands accessible from the cli tool.
Copyright © 2022 Joel D. Elkins <joel@elkins.co>
Permission is hereby granted, free of charge, to any person obtaining a copy

View File

@ -1,4 +1,6 @@
/*
Package cmd defines user commands accessible from the cli tool.
Copyright © 2022 Joel D. Elkins <joel@elkins.co>
Permission is hereby granted, free of charge, to any person obtaining a copy

View File

@ -1,4 +1,6 @@
/*
Package cmd defines user commands accessible from the cli tool.
Copyright © 2022 Joel D. Elkins <joel@elkins.co>
Permission is hereby granted, free of charge, to any person obtaining a copy

View File

@ -1,4 +1,6 @@
/*
Package cmd defines user commands accessible from the cli tool.
Copyright © 2022 Joel D. Elkins <joel@elkins.co>
Permission is hereby granted, free of charge, to any person obtaining a copy

View File

@ -1,4 +1,6 @@
/*
Package cmd defines user commands accessible from the cli tool.
Copyright © 2022 Joel D. Elkins <joel@elkins.co>
Permission is hereby granted, free of charge, to any person obtaining a copy

View File

@ -1,4 +1,6 @@
/*
Package cmd defines user commands accessible from the cli tool.
Copyright © 2022 Joel D. Elkins <joel@elkins.co>
Permission is hereby granted, free of charge, to any person obtaining a copy

View File

@ -1,4 +1,6 @@
/*
Package cmd defines user commands accessible from the cli tool.
Copyright © 2022 Joel D. Elkins <joel@elkins.co>
Permission is hereby granted, free of charge, to any person obtaining a copy

View File

@ -1,4 +1,8 @@
/*
Package network houses configured default metadata. Items defined for
a `network.Network` struct serve as default values for container network
definitions (based on the nework Name).
Copyright © 2022 Joel D. Elkins <joel@elkins.co>
Permission is hereby granted, free of charge, to any person obtaining a copy
@ -27,6 +31,11 @@ import (
"gopkg.in/guregu/null.v4"
)
// Network - when defined standalone in the configuration file, houses default
// network metadata for a container. A container.Container struct also contains
// a slice of Networks, which define the particulars. If the container
// configuration omits DNS servers or the IPv6 flag, then the stand alone
// definition values will be applied for the container when it is created.
type Network struct {
Name string `toml:"name"`
DNS []net.IP `toml:"dns,omitempty"`