This is an automated email from the ASF dual-hosted git repository.

ebenizzy pushed a commit to branch fix/license-cleanup
in repository https://gitbox.apache.org/repos/asf/burr.git

commit 765dadc824d263ce94f19ac2bb67f58469b15874
Author: Elijah Ben Izzy <[email protected]>
AuthorDate: Sun Apr 5 13:51:23 2026 -0700

    fix: add ASF headers to remaining website config files and update 
.rat-excludes
    
    - Add ASF license headers to next.config.js, globals.css, postcss.config.mjs
    - Add *.json to .rat-excludes (JSON files cannot contain comments)
    
    Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
---
 .rat-excludes               |  3 +++
 website/next.config.js      | 19 +++++++++++++++++++
 website/postcss.config.mjs  | 19 +++++++++++++++++++
 website/src/app/globals.css | 19 +++++++++++++++++++
 4 files changed, 60 insertions(+)

diff --git a/.rat-excludes b/.rat-excludes
index 7a51824e..393420e0 100644
--- a/.rat-excludes
+++ b/.rat-excludes
@@ -22,5 +22,8 @@
 .*\.bat
 robots\.txt
 
+# JSON config files (cannot contain comments)
+.*\.json
+
 # Examples pattern (legacy - keeping for compatibility)
 apache_burr-.*/burr/examples
diff --git a/website/next.config.js b/website/next.config.js
index 9399743d..c937171b 100644
--- a/website/next.config.js
+++ b/website/next.config.js
@@ -1,3 +1,22 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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.
+ */
+
 /** @type {import('next').NextConfig} */
 const nextConfig = {
   output: "export",
diff --git a/website/postcss.config.mjs b/website/postcss.config.mjs
index 61e36849..bb3a4aa5 100644
--- a/website/postcss.config.mjs
+++ b/website/postcss.config.mjs
@@ -1,3 +1,22 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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.
+ */
+
 const config = {
   plugins: {
     "@tailwindcss/postcss": {},
diff --git a/website/src/app/globals.css b/website/src/app/globals.css
index be7caa61..2759225a 100644
--- a/website/src/app/globals.css
+++ b/website/src/app/globals.css
@@ -1,3 +1,22 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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.
+ */
+
 @import "tailwindcss";
 @import "tw-animate-css";
 @import "shadcn/tailwind.css";

Reply via email to