Skip to content

Commit 97541fb

Browse files
IanMitchellckohenRodentman87vladfrangu
authored
Add Subcommands and Subcommand Groups (#125)
Co-authored-by: ckohen <[email protected]> Co-authored-by: Maisy <[email protected]> Co-authored-by: Vlad Frangu <[email protected]>
1 parent 74ff8e3 commit 97541fb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+15716
-10452
lines changed

Diff for: .eslintrc.cjs

+8
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,15 @@ module.exports = {
88
rules: {
99
"@typescript-eslint/ban-types": 0,
1010
"@typescript-eslint/prefer-literal-enum-member": 0,
11+
"@typescript-eslint/naming-convention": 0,
12+
"@typescript-eslint/parameter-properties": 0,
13+
"@typescript-eslint/consistent-type-imports": [
14+
"error",
15+
{ prefer: "type-imports" },
16+
],
17+
"no-bitwise": 0,
1118
"no-eq-null": 0,
19+
"object-shorthand": ["error", "properties"],
1220
"eqeqeq": ["error", "smart"],
1321
"capitalized-comments": 0,
1422
"no-await-in-loop": 0,

Diff for: .vscode/settings.json

+5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
{
2+
"vitest.enable": true,
23
"typescript.tsdk": "node_modules/typescript/lib",
34

45
"editor.formatOnSave": true,
6+
"editor.codeActionsOnSave": {
7+
"source.organizeImports": true
8+
},
9+
510
"files.insertFinalNewline": true,
611
"files.trimTrailingWhitespace": true,
712
"files.eol": "\n",

0 commit comments

Comments
 (0)