Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Command data #103

Open
wants to merge 28 commits into
base: v4-dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
7277572
delete unused stuff
alex-taxiera Jul 5, 2022
4a452f4
update commands to have a third param
alex-taxiera Jul 5, 2022
4dd51c3
Publish
alex-taxiera Jul 5, 2022
a9faec6
bump lockfile
alex-taxiera Jul 5, 2022
d0e70a5
lets go crazy
alex-taxiera Jul 6, 2022
23a2b18
chore: Publish new release
alex-taxiera Jul 6, 2022
72e4ff7
fix types
alex-taxiera Jul 7, 2022
322fc74
chore: Publish new release
alex-taxiera Jul 7, 2022
ec6b658
add typings for option choices
alex-taxiera Jul 9, 2022
843e28e
chore: Publish new release
alex-taxiera Jul 9, 2022
21d656e
"fix" auto complete and choice types
alex-taxiera Jul 10, 2022
74adbff
hopefully fixing the types?
alex-taxiera Jul 10, 2022
8e7e24c
update choices typings
alex-taxiera Jul 10, 2022
00a695b
chore: Publish new release
alex-taxiera Jul 10, 2022
ebeb766
fix subcommand typing
alex-taxiera Jul 14, 2022
fa6df36
clean up command types
alex-taxiera Jul 14, 2022
c9d029c
fix client types
alex-taxiera Jul 14, 2022
933ac1f
chore: Publish new release
alex-taxiera Jul 17, 2022
c8fd871
try to fix sub command typings
alex-taxiera Aug 6, 2022
2342ad9
fix client
alex-taxiera Aug 6, 2022
4e269f6
chore: Publish new release
alex-taxiera Aug 6, 2022
a97d1d8
fix auto complete options
alex-taxiera Apr 12, 2023
ded7295
update middlewares and permissions to get the options map
alex-taxiera Apr 12, 2023
cf7cd21
chore: Publish new release
alex-taxiera Apr 12, 2023
1db8b77
update styles
alex-taxiera Apr 12, 2023
627063e
add vscode settings
alex-taxiera Apr 12, 2023
6f1b671
enforce permissions on TLCs
alex-taxiera Apr 12, 2023
4bfdf2e
add oceanic wrapper
alex-taxiera Apr 13, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Editor configuration, see https://editorconfig.org
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
max_line_length = 80
insert_final_newline = true
trim_trailing_whitespace = true

[*.ts]
quote_type = single

[*.md]
max_line_length = off
trim_trailing_whitespace = false
2 changes: 2 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ ignorePatterns:
- dist
extends:
- '@alex-taxiera/eslint-config-ts'
- plugin:prettier/recommended
rules:
import-newlines/enforce: off
'@typescript-eslint/no-base-to-string':
- 'error'
-
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,3 @@ docs
dist
coverage
.nyc_output
.vscode
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v16.13.1
lts/gallium
6 changes: 6 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"semi": false,
"options": {
"editorconfig": true
}
}
9 changes: 9 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846
"recommendations": [
"dbaeumer.vscode-eslint",
"eamodio.gitlens",
"mikestead.dotenv",
"pflannery.vscode-versionlens"
]
}
12 changes: 12 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"eslint.options": {
"extensions": [".ts", ".js"]
},
"eslint.validate": [
"javascript",
"typescript",
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
}
Loading