606ep / git-sentinel

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Work has been just started

There should be a file sentinel.json with checking rules

{
  "rules": [
    {
      "name": "lint ts",
      "mask": ".ts$",
      "separate": true,     // fire command separate for each file. Current file will be "${filename}" in cmd
      "stopOnError": false, // stop on first error in rule, default false
      "commands": [
        "node_modules/.bin/tslint ${filename}" // list of commands to run
      ]
    }
  ]
}

About


Languages

Language:TypeScript 78.4%Language:Gherkin 21.6%