Skip to content

Commit c49334a

Browse files
committed
Move prettier config into dedicated file, so vscode plugins pick it up
1 parent 15e6cf9 commit c49334a

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.eslintrc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module.exports = {
1111
env: { mocha: true },
1212
root: true,
1313
rules: {
14-
'self/prettier': ['error', { singleQuote: true }],
14+
'self/prettier': ['error'],
1515
'eslint-plugin/report-message-format': ['error', '^[^a-z].*\\.$']
1616
}
1717
};

.prettierrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"singleQuote": true
3+
}

.vscode/settings.json

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
"**/.git": true,
66
"**/node_modules": true
77
},
8-
"prettier.eslintIntegration": true,
98
"search.exclude": {
109
"**/node_modules": true
1110
}

0 commit comments

Comments
 (0)