Skip to content

Commit

Permalink
Merge pull request #458 from viperproject/dependabot/npm_and_yarn/cli…
Browse files Browse the repository at this point in the history
…ent/all-27266838da

Bump the all group across 1 directory with 14 updates
  • Loading branch information
rayman2000 committed Aug 28, 2024
2 parents 7c14787 + f238566 commit f965e7e
Show file tree
Hide file tree
Showing 4 changed files with 731 additions and 512 deletions.
35 changes: 29 additions & 6 deletions client/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"ignorePatterns": ["webpack.config.js"],
"ignorePatterns": [
"webpack.config.js"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
Expand All @@ -23,7 +25,10 @@
"error"
],
"@typescript-eslint/explicit-function-return-type": [ // require a return type for functions
"error", { "allowExpressions": true }
"error",
{
"allowExpressions": true
}
],
"@typescript-eslint/no-misused-promises": [ // disallow promises in place where they are unexpected and thus not handled
"error"
Expand All @@ -32,11 +37,29 @@
"error"
],
"@typescript-eslint/no-empty-function": [
"warn", { "allow": ["arrowFunctions"] }
"warn",
{
"allow": [
"arrowFunctions"
]
}
],
"@typescript-eslint/no-inferrable-types": [
"error", { "ignoreParameters": true, "ignoreProperties": true }
"error",
{
"ignoreParameters": true,
"ignoreProperties": true
}
],
"no-inner-declarations": "off"
"no-inner-declarations": "off",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "_",
"varsIgnorePattern": "_",
"caughtErrorsIgnorePattern": "_"
}
]
}
}
}
Loading

0 comments on commit f965e7e

Please sign in to comment.