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

feat: Migrate VSCE-only functionality to SDKs and CLI plug-in #120

Draft
wants to merge 10 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ root = true

[*]
indent_style = space
indent_size = 4
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
Expand Down
8 changes: 5 additions & 3 deletions .eslintrc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ overrides:
"@typescript-eslint/no-misused-promises": warn
"@typescript-eslint/no-unsafe-return": warn
"@typescript-eslint/restrict-plus-operands": off
"@typescript-eslint/no-explicit-any": off
"@typescript-eslint/restrict-template-expressions": off
"@typescript-eslint/explicit-function-return-type": off
"@typescript-eslint/unbound-method": warn
Expand All @@ -36,9 +37,7 @@ rules:
"@typescript-eslint/explicit-function-return-type": off
"@typescript-eslint/restrict-template-expressions": off
indent": off
"@typescript-eslint/indent":
- error
- 2
"@typescript-eslint/indent": off

# There are several errors falling under these rules; resolve
"@typescript-eslint/no-for-in-array": off
Expand All @@ -48,6 +47,9 @@ rules:
"@typescript-eslint/no-unsafe-call": off
"@typescript-eslint/no-unsafe-member-access": off
"@typescript-eslint/no-unsafe-return": off
"@typescript-eslint/no-explicit-any": off
"@typescript-eslint/no-base-to-string": off
"@typescript-eslint/ban-ts-comment": off

"@typescript-eslint/no-shadow": error
"@typescript-eslint/no-unused-expressions": error
Expand Down
9 changes: 9 additions & 0 deletions .prettierrc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
printWidth: 150
tabWidth: 2
useTabs: false
semi: true
singleQuote: false
trailingComma: "es5"
bracketSpacing: true
arrowParens: "always"
experimentalTernaries: true
Loading
Loading