We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f0846c commit 7bc83dbCopy full SHA for 7bc83db
es6.js
@@ -16,6 +16,8 @@ module.exports = {
16
'prefer-rest-params': 'error',
17
'prefer-spread': 'error',
18
'rest-spread-spacing': 'error',
19
- 'yield-star-spacing': ['error', 'after']
+ 'yield-star-spacing': ['error', 'after'],
20
+
21
+ 'quotes': ['error', 'backtick']
22
}
23
};
test/es6/template-only.js
@@ -1,3 +1,2 @@
1
const a = `abcde`;
2
-const b = 'defgh';
3
-throw new Error(a, b);
+throw new Error(a);
0 commit comments