-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
3,942 additions
and
3,742 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,21 @@ | ||
// @ts-check | ||
import antfu from '@antfu/eslint-config' | ||
|
||
export default antfu( | ||
{ | ||
yaml: false, | ||
stylistic: { indent: 4 }, | ||
ignores: ['components.d.ts'], | ||
}, | ||
{ | ||
rules: { | ||
'no-new': 'off', | ||
'no-console': 'off', | ||
'import/export': 'off', | ||
}, | ||
}, | ||
{ | ||
files: ['**/*.json'], | ||
rules: { | ||
'indent': ['error', 2], | ||
'jsonc/indent': ['error', 2], | ||
overrides: { | ||
jsonc: { | ||
'indent': ['error', 2], | ||
'jsonc/indent': ['error', 2], | ||
}, | ||
javascript: { | ||
'no-console': 'off', | ||
}, | ||
typescript: { | ||
'ts/ban-ts-comment': 'off', | ||
}, | ||
}, | ||
ignores: [], | ||
}, | ||
// #region vue | ||
// { | ||
// files: ['**/*.vue'], | ||
// rules: { | ||
// 'vue/html-indent': ['error', 2], | ||
// 'vue/script-indent': ['error', 4], | ||
// }, | ||
// }, | ||
// #endregion | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
{ | ||
"name": "@qbbsh/starter-cli", | ||
"type": "module", | ||
"version": "1.5.2-beta.1", | ||
"version": "1.5.2-beta.2", | ||
"packageManager": "[email protected]", | ||
"description": "cli stater", | ||
"author": "Q.Ben Zheng <[email protected]> (https://github.com/Zhengqbbb/)", | ||
"license": "MIT", | ||
|
@@ -42,7 +43,7 @@ | |
"postinstall": "simple-git-hooks", | ||
"prepack": "run-s lint build", | ||
"release": "run-s release:bump release:publish", | ||
"release:next": "bumpp --no-commit --no-tag && pnpm publish --tag next --no-git-checks", | ||
"release:next": "bumpp --no-commit --no-push --no-tag && pnpm publish --tag next --no-git-checks", | ||
"release:bump": "bumpp -y -c 'build: :bookmark: publish v%s'", | ||
"release:publish": "pnpm publish" | ||
}, | ||
|
Oops, something went wrong.