When passing a --config flag to the jshint linter, the path to the config file is resolved relative to wherever arc is executed. Expected behavior is that the path should be resolved relative to the repository root.
Sample .arclint file:
{ "linters": { "jshint": { "type": "jshint", "flags": [ "--config=ember/.jshintrc" ], "include": "@^ember/.*\\.js$@", "exclude": [ "@^ember/app/scripts/vendor@" ] } } }