chore(commitlint): set up commitlint config
Added the following files:
package.json: project metadata and npm package dependencies
package-lock.json: locks exact versions of dependencies
commitlint.config.js: commitlint conventional commits preset
Change-Id: I3b4c0406e4c6d769fb5d3cde08c0ebf22d484970
Signed-off-by: Lucas Bruckbauer <lucas.bruckbauer@arm.com>
diff --git a/commitlint.config.js b/commitlint.config.js
new file mode 100644
index 0000000..3f01616
--- /dev/null
+++ b/commitlint.config.js
@@ -0,0 +1,9 @@
+/*
+ * Copyright 2025 The Hafnium Authors.
+ *
+ * Use of this source code is governed by a BSD-style
+ * license that can be found in the LICENSE file or at
+ * https://opensource.org/licenses/BSD-3-Clause.
+ */
+
+export default { extends: ['@commitlint/config-conventional'] };
\ No newline at end of file