From e2ec6d07f76d0f82e192ba8a55b79b2b7852bcac Mon Sep 17 00:00:00 2001 From: Terrence Ryan Date: Tue, 23 Jun 2020 10:56:15 -0700 Subject: [PATCH] Adding support for SCSS and Sass files. --- main.go | 2 +- testdata/expected/file.sass | 22 ++++++++++++++++++++++ testdata/expected/file.scss | 22 ++++++++++++++++++++++ testdata/initial/file.sass | 6 ++++++ testdata/initial/file.scss | 6 ++++++ 5 files changed, 57 insertions(+), 1 deletion(-) create mode 100644 testdata/expected/file.sass create mode 100644 testdata/expected/file.scss create mode 100644 testdata/initial/file.sass create mode 100644 testdata/initial/file.scss diff --git a/main.go b/main.go index 295aeb1..9b6fae6 100644 --- a/main.go +++ b/main.go @@ -207,7 +207,7 @@ func licenseHeader(path string, tmpl *template.Template, data *copyrightData) ([ return nil, nil case ".c", ".h": lic, err = prefix(tmpl, data, "/*", " * ", " */") - case ".js", ".mjs", ".cjs", ".jsx", ".tsx", ".css", ".tf", ".ts": + case ".js", ".mjs", ".cjs", ".jsx", ".tsx", ".css", ".scss", ".sass", ".tf", ".ts": lic, err = prefix(tmpl, data, "/**", " * ", " */") case ".cc", ".cpp", ".cs", ".go", ".hh", ".hpp", ".java", ".m", ".mm", ".proto", ".rs", ".scala", ".swift", ".dart", ".groovy", ".kt", ".kts": lic, err = prefix(tmpl, data, "", "// ", "") diff --git a/testdata/expected/file.sass b/testdata/expected/file.sass new file mode 100644 index 0000000..afd6d49 --- /dev/null +++ b/testdata/expected/file.sass @@ -0,0 +1,22 @@ +/** + * Copyright 2018 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +$font-stack: Helvetica, sans-serif +$primary-color: #333 + +body + font: 100% $font-stack + color: $primary-color diff --git a/testdata/expected/file.scss b/testdata/expected/file.scss new file mode 100644 index 0000000..4ee4f09 --- /dev/null +++ b/testdata/expected/file.scss @@ -0,0 +1,22 @@ +/** + * Copyright 2018 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +.div { + color: red; + .child{ + color: green; + } +} diff --git a/testdata/initial/file.sass b/testdata/initial/file.sass new file mode 100644 index 0000000..d980fcc --- /dev/null +++ b/testdata/initial/file.sass @@ -0,0 +1,6 @@ +$font-stack: Helvetica, sans-serif +$primary-color: #333 + +body + font: 100% $font-stack + color: $primary-color diff --git a/testdata/initial/file.scss b/testdata/initial/file.scss new file mode 100644 index 0000000..c3e05ff --- /dev/null +++ b/testdata/initial/file.scss @@ -0,0 +1,6 @@ +.div { + color: red; + .child{ + color: green; + } +}