-
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
1 parent
5e9742b
commit fb2bf1f
Showing
60 changed files
with
3,349 additions
and
1,208 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"root": true, | ||
"parser": "@typescript-eslint/parser", | ||
"plugins": [ | ||
"@typescript-eslint" | ||
], | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:@typescript-eslint/eslint-recommended", | ||
"plugin:@typescript-eslint/recommended" | ||
], | ||
"rules": { | ||
"no-console": "off" | ||
}, | ||
// set eslint env | ||
"env": { | ||
"node": true | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.history/ | ||
node_modules | ||
lib | ||
dist | ||
template |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
export default { | ||
// 一行的字符数,如果超过会进行换行,默认为80 | ||
printWidth: 80, | ||
// 一个tab代表几个空格数,默认为2 | ||
tabWidth: 2, | ||
// 是否使用tab进行缩进,默认为false,表示用空格进行缩减 | ||
useTabs: false, | ||
// 字符串是否使用单引号,默认为false,使用双引号 | ||
singleQuote: true, | ||
// 行位是否使用分号,默认为true | ||
semi: false, | ||
// 是否使用尾逗号,有三个可选值"<none|es5|all>" | ||
trailingComma: 'none', | ||
// 对象大括号直接是否有空格,默认为true,效果:{ foo: bar } | ||
bracketSpacing: true | ||
} |
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,3 +1,3 @@ | ||
#!/usr/bin/env node | ||
import main from "../lib/index.js"; | ||
main(); | ||
import main from '../lib/index.js' | ||
main() |
Oops, something went wrong.