From 6283c148fd4a19ae6df36460c864b4f6b88166cd Mon Sep 17 00:00:00 2001 From: James Bruten <109733895+james-bruten-mo@users.noreply.github.com> Date: Fri, 20 Feb 2026 08:22:27 +0000 Subject: [PATCH] add templates --- script_copyright_checker/file/c_cpp.template | 5 +++++ script_copyright_checker/file/fortran33.template | 5 +++++ script_copyright_checker/file/python2.template | 5 +++++ 3 files changed, 15 insertions(+) create mode 100644 script_copyright_checker/file/c_cpp.template create mode 100644 script_copyright_checker/file/fortran33.template create mode 100644 script_copyright_checker/file/python2.template diff --git a/script_copyright_checker/file/c_cpp.template b/script_copyright_checker/file/c_cpp.template new file mode 100644 index 00000000..405e1657 --- /dev/null +++ b/script_copyright_checker/file/c_cpp.template @@ -0,0 +1,5 @@ +// ----------------------------------------------------------------------------- +// (C) Crown copyright Met Office. All rights reserved. +// The file LICENCE, distributed with this code, contains details of the terms +// under which the code may be used. +// ----------------------------------------------------------------------------- diff --git a/script_copyright_checker/file/fortran33.template b/script_copyright_checker/file/fortran33.template new file mode 100644 index 00000000..ce83c199 --- /dev/null +++ b/script_copyright_checker/file/fortran33.template @@ -0,0 +1,5 @@ +! ----------------------------------------------------------------------------- +! (C) Crown copyright Met Office. All rights reserved. +! The file LICENCE, distributed with this code, contains details of the terms +! under which the code may be used. +! ----------------------------------------------------------------------------- diff --git a/script_copyright_checker/file/python2.template b/script_copyright_checker/file/python2.template new file mode 100644 index 00000000..841888ea --- /dev/null +++ b/script_copyright_checker/file/python2.template @@ -0,0 +1,5 @@ +# ----------------------------------------------------------------------------- +# (C) Crown copyright Met Office. All rights reserved. +# The file LICENCE, distributed with this code, contains details of the terms +# under which the code may be used. +# -----------------------------------------------------------------------------