Skip to content

Commit 26d4557

Browse files
committed
Fix rules format code
1 parent 588fa65 commit 26d4557

File tree

4 files changed

+17
-7
lines changed

4 files changed

+17
-7
lines changed

.eslintrc

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
"warn",
77
{
88
"arrowParens": "avoid",
9-
"semi": false,
10-
"trailingComma": "none",
9+
"trailingComma": "all",
1110
"endOfLine": "lf",
1211
"tabWidth": 2,
1312
"printWidth": 80,

.prettierrc

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

.vscode/settings.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
21
{
32
"editor.defaultFormatter": "esbenp.prettier-vscode",
43
"editor.formatOnSave": true,
54
"editor.codeActionsOnSave": {
65
"source.fixAll.eslint": true
7-
}
8-
}
6+
},
7+
"prettier.singleQuote": true,
8+
"prettier.jsxSingleQuote": true
9+
}

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "React-Folder-Structure",
2+
"name": "typescript-react-boilerplate",
33
"version": "0.1.0",
44
"private": true,
55
"dependencies": {
@@ -58,4 +58,4 @@
5858
"last 1 safari version"
5959
]
6060
}
61-
}
61+
}

0 commit comments

Comments
 (0)