Skip to content
This repository was archived by the owner on Jun 15, 2022. It is now read-only.

Commit 30c5fcb

Browse files
committed
separate eslint and prettier settings
1 parent 5583047 commit 30c5fcb

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

.eslintrc.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,6 @@ module.exports = {
1616
},
1717
},
1818
rules: {
19-
'prettier/prettier': [
20-
'error',
21-
{
22-
singleQuote: true,
23-
trailingComma: 'all',
24-
},
25-
],
2619
'@typescript-eslint/no-explicit-any': 'off',
2720
'@typescript-eslint/ban-types': 'off',
2821
'@typescript-eslint/explicit-module-boundary-types': 'off',

.prettierrc.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module.exports = {
2+
singleQuote: true,
3+
trailingComma: 'all',
4+
};

0 commit comments

Comments
 (0)