Add ESLint `quotes` rule

This commit is contained in:
Daniel Gasienica 2018-04-11 15:41:40 -04:00
parent 432a6ebd7f
commit 819671a23a
1 changed files with 2 additions and 0 deletions

View File

@ -51,5 +51,7 @@ module.exports = {
// consistently place operators at end of line except ternaries
'operator-linebreak': 'error',
'quotes': ['error', 'single', { 'avoidEscape': true, 'allowTemplateLiterals': false }],
}
};