-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
corrected licenses and local repolint
- Loading branch information
nwtn
committed
Jun 4, 2024
1 parent
669aa74
commit c29cfa2
Showing
2 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} | ||
} | ||
} | ||
} |