diff --git a/.eslintrc.yml b/.eslintrc.yml index 1672a22e..369a4fec 100644 --- a/.eslintrc.yml +++ b/.eslintrc.yml @@ -265,6 +265,9 @@ rules: operator-assignment: - error - always + quotes: + - error + - single quote-props: - error - as-needed diff --git a/tests/gui/components/svg-icon.spec.js b/tests/gui/components/svg-icon.spec.js index 5274f7ce..5eca6b21 100644 --- a/tests/gui/components/svg-icon.spec.js +++ b/tests/gui/components/svg-icon.spec.js @@ -75,7 +75,7 @@ describe('Browser: SVGIcon', function () { it('should use an empty src if there is a parsererror', function () { // The following is invalid, because there's no closing tag for `foreignObject` const iconContents = '' - const imgData = `data:image/svg+xml,` + const imgData = 'data:image/svg+xml,' $rootScope.iconContents = iconContents const element = $compile('Resin.io')($rootScope)