mirror of
https://github.com/shimataro/ssh-key-action.git
synced 2025-06-19 22:52:10 +10:00
* add lint tools (#61)
This commit is contained in:
parent
ab2b5fa346
commit
a4ff38c616
8 changed files with 2417 additions and 359 deletions
16
package.json
16
package.json
|
@ -10,7 +10,12 @@
|
|||
},
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"check-updates": "ncu"
|
||||
"check-updates": "ncu",
|
||||
"lint": "run-p lint:*",
|
||||
"lint:ts": "eslint ./src --ext .ts",
|
||||
"lint:md": "markdownlint . --ignore node_modules --ignore examples",
|
||||
"lint:yaml": "yamllint .*.yml *.yml --ignore=node_modules/**/*.yml --ignore=node_modules/**/*.yaml",
|
||||
"verify": "run-p lint"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -30,7 +35,14 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "13.1.1",
|
||||
"@typescript-eslint/eslint-plugin": "2.16.0",
|
||||
"@typescript-eslint/parser": "2.16.0",
|
||||
"eslint": "6.8.0",
|
||||
"eslint-plugin-import": "2.20.0",
|
||||
"markdownlint-cli": "0.21.0",
|
||||
"npm-check-updates": "4.0.1",
|
||||
"typescript": "3.7.4"
|
||||
"npm-run-all": "4.1.5",
|
||||
"typescript": "3.7.4",
|
||||
"yaml-lint": "1.2.4"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue