Skip to content

Commit ebb836e

Browse files
authored
Move prettier config into .prettierrc (roblox-ts#1865)
1 parent c26e65f commit ebb836e

File tree

2 files changed

+10
-12
lines changed

2 files changed

+10
-12
lines changed

.eslintrc

+1-12
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,7 @@
2020
"plugin:prettier/recommended"
2121
],
2222
"rules": {
23-
"prettier/prettier": [
24-
"warn",
25-
{
26-
"semi": true,
27-
"trailingComma": "all",
28-
"singleQuote": false,
29-
"printWidth": 120,
30-
"tabWidth": 4,
31-
"useTabs": true,
32-
"arrowParens": "avoid"
33-
}
34-
],
23+
"prettier/prettier": "warn",
3524
"@typescript-eslint/array-type": [
3625
"warn",
3726
{

.prettierrc

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"semi": true,
3+
"trailingComma": "all",
4+
"singleQuote": false,
5+
"printWidth": 120,
6+
"tabWidth": 4,
7+
"useTabs": true,
8+
"arrowParens": "avoid"
9+
}

0 commit comments

Comments
 (0)