diff options
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/addlicense.sh | 6 | ||||
| -rwxr-xr-x | tools/check_addlicense.sh | 6 | ||||
| -rwxr-xr-x | tools/check_goimports.sh | 6 | ||||
| -rwxr-xr-x | tools/goimports.sh | 6 |
4 files changed, 24 insertions, 0 deletions
diff --git a/tools/addlicense.sh b/tools/addlicense.sh new file mode 100755 index 0000000..f8ab42f --- /dev/null +++ b/tools/addlicense.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash +# Copyright (c) 2023 Nicolas Paul All rights reserved. +# Use of this source code is governed by a BSD-style +# license that can be found in the LICENSE file. + +addlicense -c="Nicolas Paul" -l=bsd -v -y=2023 .
\ No newline at end of file diff --git a/tools/check_addlicense.sh b/tools/check_addlicense.sh new file mode 100755 index 0000000..ff4c0ec --- /dev/null +++ b/tools/check_addlicense.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash +# Copyright (c) 2023 Nicolas Paul All rights reserved. +# Use of this source code is governed by a BSD-style +# license that can be found in the LICENSE file. + +addlicense -c="Nicolas Paul" -l=bsd -v -y=2023 --check .
\ No newline at end of file diff --git a/tools/check_goimports.sh b/tools/check_goimports.sh new file mode 100755 index 0000000..c15b914 --- /dev/null +++ b/tools/check_goimports.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash +# Copyright (c) 2023 Nicolas Paul All rights reserved. +# Use of this source code is governed by a BSD-style +# license that can be found in the LICENSE file. + +goimports -e -d -l .
\ No newline at end of file diff --git a/tools/goimports.sh b/tools/goimports.sh new file mode 100755 index 0000000..90695ab --- /dev/null +++ b/tools/goimports.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash +# Copyright (c) 2023 Nicolas Paul All rights reserved. +# Use of this source code is governed by a BSD-style +# license that can be found in the LICENSE file. + +goimports -e -w -l .
\ No newline at end of file |
