Skip to content

Commit

Permalink
arc lint: ignore /tests/ in chmod
Browse files Browse the repository at this point in the history
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
  • Loading branch information
grimreaper committed Dec 19, 2017
1 parent d5e7034 commit 85df931
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .arclint
Expand Up @@ -9,7 +9,8 @@
"type": "spelling"
},
"chmod": {
"type": "chmod"
"type": "chmod",
"exclude": "(/tests/)"
},
"merge-conflict": {
"type": "merge-conflict"
Expand Down

0 comments on commit 85df931

Please sign in to comment.