Skip to content

Commit

Permalink
corrected licenses and local repolint
Browse files Browse the repository at this point in the history
  • Loading branch information
nwtn committed Jun 4, 2024
1 parent 669aa74 commit c29cfa2
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Network SubSytem(NSS)-firmware

Firmware files for NSS, a network acceleration engine for Qualcomm Technologies 802.11ax devices

## License
qca-sdk-nss-fw is licensed under the BSD 3-clause "New" or "Revised" License. Check out the [LICENSE](https://github.com/quic/qca-sdk-nss-fw/edit/main/LICENSE.md) for more details.
45 changes: 45 additions & 0 deletions repolint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"extends": "https://raw.githubusercontent.com/quic/.github/main/repolint.json",
"rules": {
"source-license-headers-exist": {
"level": "error",
"rule": {
"type": "file-starts-with",
"options": {
"globsAll": [
"**/*.py",
"**/*.js",
"**/*.c",
"**/*.cc",
"**/*.cpp",
"**/*.h",
"**/*.ts",
"**/*.sh",
"**/*.rs",
"**/*.java",
"**/*.go",
"**/*.bbclass",
"**/*.S"
],
"skip-paths-matching": {
"patterns": [
"babel.config.js",
"build\/",
"jest.config.js",
"node_modules\/",
"types\/",
"uthash.h"
]
},
"lineCount": 60,
"patterns": [
"(Copyright|©).*Qualcomm Innovation Center, Inc|Copyright (\\(c\\)|©) (20(1[2-9]|2[0-2])(-|,|\\s)*)+ The Linux Foundation",
"SPDX-License-Identifier|Redistribution and use in source and binary forms, with or without"
],
"flags": "i",
"succeed-on-non-existent": true
}
}
}
}
}

0 comments on commit c29cfa2

Please sign in to comment.