Skip to content

Commit

Permalink
fix: correct send of zero values
Browse files Browse the repository at this point in the history
  • Loading branch information
askuzminov committed Nov 17, 2020
1 parent d513844 commit 453980f
Show file tree
Hide file tree
Showing 6 changed files with 528 additions and 237 deletions.
11 changes: 4 additions & 7 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,8 @@ module.exports = {
'@typescript-eslint/no-for-in-array': ['off'],
'@typescript-eslint/no-floating-promises': ['error', { ignoreVoid: true, ignoreIIFE: true }],
'@typescript-eslint/no-misused-promises': 'error',
'@typescript-eslint/no-shadow': ['error'],
'@typescript-eslint/no-redeclare': ['error'],
'arrow-parens': ['off', 'always'],
'brace-style': ['off', 'off'],
camelcase: 'warn',
Expand Down Expand Up @@ -221,15 +223,10 @@ module.exports = {
],
'no-new-func': 'error',
'no-new-wrappers': 'error',
'no-redeclare': 'error',
'no-redeclare': 'off',
'no-return-await': 'error',
'no-sequences': 'error',
'no-shadow': [
'error',
{
hoist: 'all',
},
],
'no-shadow': 'off',
'no-sparse-arrays': 'error',
'no-template-curly-in-string': 'error',
'no-throw-literal': 'error',
Expand Down

0 comments on commit 453980f

Please sign in to comment.