Skip to content

Commit

Permalink
package updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Morgul committed Oct 3, 2024
1 parent 8633722 commit fe88136
Show file tree
Hide file tree
Showing 30 changed files with 1,635 additions and 1,224 deletions.
13 changes: 10 additions & 3 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,14 @@ module.exports = {
'require-atomic-updates': 'off',

// Common Mistakes
'@typescript-eslint/no-unused-vars': [ 'warn', { ignoreRestSiblings: true, argsIgnorePattern: '^_' } ],
'@typescript-eslint/no-unused-vars': [
'warn',
{
ignoreRestSiblings: true,
argsIgnorePattern: '^_',
caughtErrorsIgnorePattern: '^_',
}
],
'no-extra-bind': 'warn',
'no-floating-decimal': 'warn',
'no-multi-spaces': 'warn',
Expand All @@ -52,8 +59,8 @@ module.exports = {
'no-shadow': 'off',

// Style
'@typescript-eslint/type-annotation-spacing': [ 'warn', { before: true, after: true } ],
'@typescript-eslint/explicit-function-return-type': [ 'warn', { allowExpressions: true } ],
//'@typescript-eslint/type-annotation-spacing': [ 'warn', { before: true, after: true } ],
'@typescript-eslint/explicit-function-return-type': [ 'warn', { allowExpressions: true, } ],
'array-bracket-newline': [ 'warn', 'consistent' ],
'array-bracket-spacing': [ 'warn', 'always' ],
'array-element-newline': [ 'warn', 'consistent' ],
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
# Build artifacts
.cache
dist
*.tsbuildinfo

# Node artifacts
node_modules
Expand Down
Loading

0 comments on commit fe88136

Please sign in to comment.