Create a repository with a js file and create an .arclint
{
"linters": {
"sample": {
"type": "gjslint",
"include": "(\\.js$)",
"severity": {
"E:0110": "disabled"
}
}
}
}
Now add a long javascript file with a long line. Without the arc lint it should give an error, with it no error message should be shown.