bridge-node-server/.arclint

19 lines
701 B
Plaintext
Raw Permalink Normal View History

2018-06-24 20:15:03 +00:00
{
"linters": {
"eslint-regex-based": {
"type": "script-and-regex",
"include": "(\\.js?$)",
"exclude": [],
"script-and-regex.script": "node eslint-for-arc.js",
"script-and-regex.regex": "/^(?P<file>.*): line (?P<line>[0-9]*), col (?P<char>[0-9]*), ((?P<warning>Warning)|(?P<error>Error)) - (?P<message>.*) \\((?P<code>[a-z-\\/]+)\\)$/m"
},
"nsp-regex-based": {
"type": "script-and-regex",
"include": "(package.json$)",
"exclude": [],
"script-and-regex.script": "node nsp-for-arc.js",
"script-and-regex.regex": "/^ (?P<name>\\S* +\\S*) +(?P<original>\\S*) +(?P<other>(?>\\S*(?> > )?)*) +(?P<message>https:\\S*) *$/m"
}
}
}