Page MenuHomePhabricator
Paste P1805

example arclint file with comment
ActivePublic

Authored by mrkanaly on Jun 16 2015, 6:57 PM.
Tags
None
Referenced Files
F507158: example arclint file with comment
Jun 16 2015, 6:57 PM
Subscribers
None
{
"_comment" : [ "flake8",
"E201-Whitespace after '('",
"E202-Whitespace before ')'",
"E203-Whitespace before ':'"],
"exclude" : ["(^bin/)"],
"linters": {
"python": {
"type": "flake8",
"include": "(\\.py$)",
"severity": {
"E201": "disabled",
"E202": "disabled",
"E221": "disabled",
"E265": "disabled",
"E271": "disabled",
"E272": "disabled",
"E501": "disabled"
}
},
"source": {
"type": "cppcheck",
"include": "(\\.c$)",
"flags": ["--enable=all"]
}
}
}

Event Timeline

mrkanaly changed the title of this paste from untitled to example arclint file with comment.
mrkanaly updated the paste's language from autodetect to json.