-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added *.sv and *.sv in custm repolint for source-license-headers-exist
Signed-off-by: Navyendu V Surendranadhan <[email protected]>
- Loading branch information
1 parent
4b98130
commit 371911e
Showing
2 changed files
with
50 additions
and
7 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
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,47 @@ | ||
{ | ||
"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", | ||
"**/*.svh", | ||
"**/*.sv" | ||
], | ||
"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" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|