Skip to content

Commit 9d6c165

Browse files
committed
fix(eslint): Fix quotes in config
1 parent 5b204a0 commit 9d6c165

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.eslintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ module.exports = {
7474
tabWidth: 2,
7575
},
7676
],
77+
quotes: ["warn", "double", { allowTemplateLiterals: true }],
7778
"simple-import-sort/imports": [
7879
"warn",
7980
{

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
const eslintrc = require('./.eslintrc');
1+
const eslintrc = require("./.eslintrc");
22

33
module.exports = eslintrc;

0 commit comments

Comments
 (0)