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

Various fixes #119

Merged
merged 1 commit into from
Apr 3, 2024
Merged
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
24 changes: 19 additions & 5 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,24 @@ parserOptions:
sourceType: module
plugins:
- '@typescript-eslint'
- '@stylistic'
rules:
'@typescript-eslint/no-explicit-any': 'off'
'@typescript-eslint/no-var-requires': 'off'
'@typescript-eslint/no-unused-vars': 'off'
'no-undef': 'off'
'no-case-declarations': 'off'
'require-yield': 'off'
'@typescript-eslint/no-unused-vars':
- error
- args: all
argsIgnorePattern: '^_'
caughtErrors: all
caughtErrorsIgnorePattern: '^_'
destructuredArrayIgnorePattern: '^_'
varsIgnorePattern: '^_'
ignoreRestSiblings: true

# Style rules
# Only adding some rules here to start.
# See https://eslint.style/rules for a complete
# list, and add more when given time.
'@stylistic/arrow-parens': 'error'
'@stylistic/arrow-spacing': 'error'
'@stylistic/block-spacing': 'error'
'@stylistic/brace-style': 'error'
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: npm run compile

- name: Run ESLint
run: npx eslint --format @microsoft/eslint-formatter-sarif --output-file eslint-results.sarif .
run: npx eslint --format @microsoft/eslint-formatter-sarif --output-file eslint-results.sarif src
continue-on-error: true

- name: Upload analysis results to GitHub
Expand Down
322 changes: 322 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading