Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
 axios       ^1.6.2  →  ^1.6.7
 typescript  ^5.3.3  →  ^5.4.2
  • Loading branch information
sefinek24 committed Mar 13, 2024
1 parent 236669f commit 1dafb8b
Show file tree
Hide file tree
Showing 7 changed files with 128 additions and 129 deletions.
24 changes: 8 additions & 16 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,13 @@ module.exports = {
'env': {
'es6': true,
'node': true,
'browser': true,
'mongo': true,
},
'extends': ['eslint:recommended'],
'parserOptions': {
'ecmaVersion': 2023,
'ecmaVersion': 'latest',
},
'rules': {
'arrow-spacing': ['warn', { before: true, after: true }],
// 'brace-style': ['error', 'stroustrup', { allowSingleLine: true }],
'comma-dangle': ['error', 'always-multiline'],
'comma-spacing': 'error',
'comma-style': 'error',
Expand All @@ -26,32 +23,27 @@ module.exports = {
'no-empty': 'warn',
'no-empty-function': 'error',
'no-floating-decimal': 'error',
// 'no-inline-comments': 'error',
'no-lonely-if': 'error',
'no-multi-spaces': 'warn',
'no-multiple-empty-lines': ['warn', { 'max': 4, 'maxEOF': 1, 'maxBOF': 0 }],
'no-multiple-empty-lines': ['warn', { max: 4, maxEOF: 1, maxBOF: 0 }],
'no-shadow': ['error', { allow: ['err', 'resolve', 'reject'] }],
'no-trailing-spaces': ['warn'],
'no-unreachable': 'warn',
'no-unused-vars': 'warn',
'no-use-before-define': ['error', { functions: false, classes: true }],
'no-var': 'error',
'object-curly-spacing': ['error', 'always'],
'prefer-const': 'error',
'quotes': ['warn', 'single'],
'semi': ['warn', 'always'],
'sort-vars': 'warn',
'space-before-blocks': 'error',
'space-before-function-paren': ['error', {
anonymous: 'never',
named: 'never',
asyncArrow: 'always',
}],
'space-before-function-paren': ['error', { anonymous: 'never', named: 'never', asyncArrow: 'always' }],
'space-in-parens': 'error',
'space-infix-ops': 'error',
'space-unary-ops': 'error',
'spaced-comment': 'warn',
'yoda': 'error',
'no-use-before-define': ['error', { functions: false, classes: true }],
'no-unused-vars': 'warn',
'wrap-regex': 'error',
'sort-vars': 'warn',
'no-unreachable': 'warn',
'yoda': 'error',
},
};
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "monthly"
File renamed without changes.
3 changes: 3 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.github
.idea
.eslintrc.js
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# 📢 @sefinek/google-tts-api
Google TTS (Text-To-Speech) for [Node.js](https://nodejs.org) without any vulnerabilities.

![@sefinek/google-tts-api.png](https://nodei.co/npm/@sefinek/google-tts-api.png)

![@sefinek/google-tts-api.png](https://img.shields.io/npm/dt/@sefinek/google-tts-api?maxAge=3600)
![@sefinek/google-tts-api.png](https://img.shields.io/github/last-commit/sefinek24/google-tts-api)
![@sefinek/google-tts-api.png](https://img.shields.io/github/languages/code-size/sefinek24/google-tts-api)
Expand Down
Loading

0 comments on commit 1dafb8b

Please sign in to comment.