Skip to content
This repository has been archived by the owner on Oct 25, 2022. It is now read-only.

Commit

Permalink
style: Warn on string concat
Browse files Browse the repository at this point in the history
  • Loading branch information
oliversalzburg committed Jul 17, 2021
1 parent db658f9 commit 15b1d63
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,21 @@
"es6": true
},
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"plugins": ["@typescript-eslint"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"@typescript-eslint/no-unused-vars": [
"off"
],
"@typescript-eslint/no-unused-vars": ["off"],
"@typescript-eslint/no-explicit-any": [
"error",
{
"ignoreRestArgs": true
}
],
"eqeqeq": "error"
"eqeqeq": "error",
"prefer-template": "warn"
}
}

0 comments on commit 15b1d63

Please sign in to comment.