I want to manage not only copyright header, but also years in it.
For example, my header should look like:
copyright_holder = "HashiCorp, Inc. 2014-2023"
- So, when i run
copywrite headers over file having already created header "HashiCorp, Inc. 2014-2022" will be changed into --> "HashiCorp, Inc. 2014-2023"
- .copywrite.hcl config file should support variables, so i can template headers like
copyright_holder = "HashiCorp, Inc. ${var.copyright_year}-2023"
copyright_year = 2014
I want to manage not only copyright header, but also years in it.
For example, my header should look like:
copyright_holder = "HashiCorp, Inc. 2014-2023"
copywrite headersover file having already created header "HashiCorp, Inc. 2014-2022" will be changed into --> "HashiCorp, Inc. 2014-2023"