- I created a JSHintLinter in the arcanist folder which is in
Users/vignesh.s/arc/arcanist
- This is my
.arcconfig
file.
{
"project_id": "convert",
"load": [
"/Users/vignesh.s/arc/arcanist/src/lint/engine/JsLintEngine.php"
],
"lint.engine": "JsLintEngine"
}
- When I run
arc lint
it says this error
Usage Exception: No lint engine configured for this project. Edit '.arcconfig' to specify a lint engine, or create an '.arclint' file.
- But when I run using
arc lint -engine JsLintEngine
, it simply works
Can you tell me what is wrong here?