Skip to content

Commit fe11c31

Browse files
committed
refactor: using single quotes in eslintrc
1 parent 4bb62b9 commit fe11c31

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.eslintrc.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
module.exports = {
22
root: true,
33
env: {
4-
"cypress/globals": true,
4+
'cypress/globals': true,
55
browser: true,
66
node: true
77
},
88
extends: [
99
'plugin:vue/recommended',
10-
'@vue/standard',
10+
'@vue/standard'
1111
],
1212
plugins: [
13-
"cypress"
13+
'cypress'
1414
],
1515
parserOptions: {
1616
parser: 'babel-eslint'
1717
},
1818
rules: {
1919
'no-console': 'off'
20-
}
20+
}
2121
}

0 commit comments

Comments
 (0)