mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-02 19:51:25 +00:00
9ff7bf7a93
shell scripts in scripts don't need to be chmod +x to work. In fact most are not. Of the tests I found from a simple search: 65 are chmod +x 84 are chmod -x simply disable the check for test shell scripts. Recommit requested by: cem, rgrimes
26 lines
448 B
Text
26 lines
448 B
Text
{
|
|
"exclude": "(contrib|crypto)",
|
|
"linters": {
|
|
"python": {
|
|
"type": "pep8",
|
|
"include": "(\\.py$)"
|
|
},
|
|
"spelling": {
|
|
"type": "spelling"
|
|
},
|
|
"chmod": {
|
|
"type": "chmod",
|
|
"exclude": "(/tests/)"
|
|
},
|
|
"merge-conflict": {
|
|
"type": "merge-conflict"
|
|
},
|
|
"filename": {
|
|
"type": "filename"
|
|
},
|
|
"json": {
|
|
"type": "json",
|
|
"include": "(\\.arclint|\\.json$)"
|
|
}
|
|
}
|
|
}
|