ci: change lint script to run biomejs

This commit is contained in:
p-sw 2024-06-29 22:05:09 +09:00
parent 65a6597a8e
commit 6ed20835f6
2 changed files with 5 additions and 13 deletions

View File

@ -35,15 +35,9 @@
"engines": { "engines": {
"node": ">=18.0.0" "node": ">=18.0.0"
}, },
"files": [ "files": ["/bin", "/dist", "/oclif.manifest.json"],
"/bin",
"/dist",
"/oclif.manifest.json"
],
"homepage": "https://ui.psw.kr", "homepage": "https://ui.psw.kr",
"keywords": [ "keywords": ["oclif"],
"oclif"
],
"license": "MIT", "license": "MIT",
"main": "dist/index.js", "main": "dist/index.js",
"type": "module", "type": "module",
@ -51,9 +45,7 @@
"bin": "pswui", "bin": "pswui",
"dirname": "pswui", "dirname": "pswui",
"commands": "./dist/commands", "commands": "./dist/commands",
"plugins": [ "plugins": ["@oclif/plugin-help"],
"@oclif/plugin-help"
],
"topicSeparator": " ", "topicSeparator": " ",
"topics": { "topics": {
"hello": { "hello": {
@ -64,7 +56,7 @@
"repository": "pswui/ui", "repository": "pswui/ui",
"scripts": { "scripts": {
"build": "shx rm -rf dist && tsc", "build": "shx rm -rf dist && tsc",
"lint": "eslint . --ext .ts", "lint": "biome check --no-errors-on-unmatched",
"prepack": "yarn build" "prepack": "yarn build"
}, },
"types": "dist/index.d.ts" "types": "dist/index.d.ts"

View File

@ -6,7 +6,7 @@
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",
"build": "tsc && vite build && cp ./404.html ./dist", "build": "tsc && vite build && cp ./404.html ./dist",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", "lint": "biome check --no-errors-on-unmatched",
"preview": "vite preview" "preview": "vite preview"
}, },
"dependencies": { "dependencies": {