[eslint config] [semver-patch] Enable no-useless-concat rule which prefer-template already covers

This commit is contained in:
Jordan Harband
2016-04-17 12:53:54 -07:00
parent f468a52d82
commit c86cfaa6f9

View File

@@ -113,6 +113,9 @@ module.exports = {
'no-unused-labels': 2,
// disallow unnecessary .call() and .apply()
'no-useless-call': 0,
// disallow useless string concatenation
// http://eslint.org/docs/rules/no-useless-concat
'no-useless-concat': 2,
// disallow unnecessary string escaping
// http://eslint.org/docs/rules/no-useless-escape
'no-useless-escape': 2,