Skip to content

Commit 7bc83db

Browse files
committed
fixed #4
1 parent 5f0846c commit 7bc83db

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

es6.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ module.exports = {
1616
'prefer-rest-params': 'error',
1717
'prefer-spread': 'error',
1818
'rest-spread-spacing': 'error',
19-
'yield-star-spacing': ['error', 'after']
19+
'yield-star-spacing': ['error', 'after'],
20+
21+
'quotes': ['error', 'backtick']
2022
}
2123
};

test/es6/template-only.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
const a = `abcde`;
2-
const b = 'defgh';
3-
throw new Error(a, b);
2+
throw new Error(a);

0 commit comments

Comments
 (0)