mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 01:54:40 +08:00
bb0eb2a115
For now, just update the arclint config to point to the correct grunt script
17 lines
816 B
Text
17 lines
816 B
Text
{
|
|
"linters": {
|
|
"coffeescript-linter": {
|
|
"type": "script-and-regex",
|
|
"script-and-regex.script": "packages/client-app/script/grunt coffeelint:target --target",
|
|
"script-and-regex.regex": "/^ ((?P<error>✖)|(?P<warning>⚠)) *line (?P<line>\\d+) +(?P<message>.*)$/m",
|
|
"include": "{\\.(e?coffee|cjsx)}"
|
|
},
|
|
"eslint-regex-based": {
|
|
"type": "script-and-regex",
|
|
"include": ["(\\.jsx?$)", "(\\.es6$)"],
|
|
"exclude": ["(src\\/K2)", "(node_modules)"],
|
|
"script-and-regex.script": "sh -c '([ -e ./node_modules/.bin/eslint ]) && (./node_modules/.bin/eslint -f compact \"$0\" || true)'",
|
|
"script-and-regex.regex": "/^(?P<file>.*): line (?P<line>[0-9]*), col (?P<char>[0-9]*), (?P<warning>Warning|Error) - (?P<message>.*?)(\\((?P<code>[a-z-]+)\\))?$/m"
|
|
}
|
|
}
|
|
}
|