Skip to content

Commit

Permalink
fix(eslint): added avoidEscape for quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
praiz committed Apr 6, 2020
1 parent 4c5c132 commit cbd63d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eslint/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module.exports = {
},
},
rules: {
quotes: ['warn', 'single'],
quotes: ['warn', 'single', { avoidEscape: true }],
'comma-dangle': ['warn', 'always-multiline'],
'comma-spacing': ['warn', { before: false, after: true }],
'comma-style': ['warn', 'last'],
Expand Down

0 comments on commit cbd63d8

Please sign in to comment.