Skip to content

Commit

Permalink
Add lacheck
Browse files Browse the repository at this point in the history
Fix #126
  • Loading branch information
Freed-Wu authored and iamcco committed Nov 19, 2022
1 parent c54e04b commit c63b20e
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,25 @@ export const linters = {
"style": "hint"
}
},

"lacheck": {
"command": "lacheck",
"args": ["%file"],
"debounce": 100,
"offsetLine": 0,
"offsetColumn": 0,
"sourceName": "lacheck",
"formatLines": 1,
"formatPattern": [
"\"[^\"]+\", line (\\d+):\\s*(.*)(\\r|\\n)*$",
{
"line": 1,
"message": 2
}
],
"securities": {
"undefined": "warning"
}
},
"write-good": {
"command": "write-good",
"debounce": 100,
Expand Down

0 comments on commit c63b20e

Please sign in to comment.