1
0
Fork 0
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:
shimataro 2020-01-18 09:56:30 +09:00 committed by GitHub
parent ab2b5fa346
commit a4ff38c616
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 2417 additions and 359 deletions

View file

@ -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"
}
}