Skip to content

Commit

Permalink
Disable prefer-template ESLint rule
Browse files Browse the repository at this point in the history
This project is designed to work with old browsers that do not
support template literals.
  • Loading branch information
stevenbenner committed Feb 17, 2024
1 parent 268191b commit 15f1de6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"error",
"never"
],
"no-var": "off"
"no-var": "off",
"prefer-template": "off"
}
}
3 changes: 2 additions & 1 deletion test/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"rules": {
"require-jsdoc": "off",
"no-prototype-builtins": "off",
"no-var": "off"
"no-var": "off",
"prefer-template": "off"
},
"globals": {
"DATA_DISPLAYCONTROLLER": false,
Expand Down

0 comments on commit 15f1de6

Please sign in to comment.