Skip to content
Permalink
Browse files
Modified the ESLint Config
Rules were allowing old-style string concatenation.

Rule added to enforce the use of template strings.
  • Loading branch information
aa7401 committed Oct 12, 2019
1 parent 198a5b8 commit a00b8d52e503df617c1d11a49fe587d9b2b15d74
Showing 1 changed file with 1 addition and 0 deletions.
@@ -53,6 +53,7 @@
"no-var": 2,
"prefer-arrow-callback": 1,
"prefer-const": 2,
"prefer-template": "error",
"quotes": [1, "single"],
"semi": [1, "never"],
"space-before-blocks": ["error", { "functions": "always", "keywords": "always", "classes": "always" }],

0 comments on commit a00b8d5

Please sign in to comment.