style: format

This commit is contained in:
元凛
2022-02-10 17:55:52 +08:00
parent bdb9ee8890
commit c626dd5ef0
13 changed files with 218 additions and 126 deletions

View File

@@ -1,12 +1,6 @@
{
"private": true,
"description": "A GitHub Action easily helps you automatically manage issues.",
"keywords": [
"actions",
"issue",
"helper",
"github"
],
"repository": {
"type": "git",
"url": "https://github.com/actions-cool/issues-helper.git",
@@ -14,7 +8,6 @@
},
"license": "MIT",
"author": "xrkffgg",
"main": "src/main.ts",
"scripts": {
"dev": "APP_ROOT=web dumi dev",
"start": "APP_ROOT=web dumi dev",
@@ -22,10 +15,10 @@
"docs-dev:build": "APP_ROOT=web UMI_ENV=dev dumi build",
"docs:deploy": "gh-pages -d docs-dist",
"deploy": "npm run docs:build && npm run docs:deploy",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/*.ts",
"lint-fix": "eslint src/*.ts --fix",
"format": "prettier --write **/*.ts **/*/*.ts",
"format-check": "prettier --check **/*.ts **/*/*.ts",
"lint": "eslint src/*.ts src/*/*.ts",
"lint-fix": "eslint src/*.ts src/*/*.ts --fix",
"check-commit": "node ./scripts/check-commit.js",
"tag": "node ./scripts/tag.js",
"release": "node ./scripts/release",