Skip to content

Commit ff6292d

Browse files
committed
added eslint prettier
1 parent 63e0a62 commit ff6292d

8 files changed

+1748
-4
lines changed

.editorconfig

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
root = true
2+
3+
[*]
4+
5+
charset = utf-8
6+
end_of_line = lf
7+
insert_final_newline = true
8+
indent_style = space
9+
indent_size = 2
10+
trim_trailing_whitespace = true

.eslintrc.json

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es2020": true
5+
},
6+
"extends": [
7+
"plugin:react/recommended",
8+
"standard",
9+
"prettier"
10+
],
11+
"parserOptions": {
12+
"ecmaFeatures": {
13+
"jsx": true
14+
},
15+
"ecmaVersion": 11,
16+
"sourceType": "module"
17+
},
18+
"plugins": [
19+
"react",
20+
"prettier"
21+
],
22+
"rules": {
23+
"prettier/prettier": "error",
24+
"no-console": 1
25+
},
26+
"settings": {
27+
"react": {
28+
"version": "detect"
29+
}
30+
}
31+
}

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

.prettierrc.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
module.exports = {
2+
semi: true,
3+
bracketSpacing: true,
4+
jsxBracketSameLine: true,
5+
singleQuote: true,
6+
trailingComma: 'all',
7+
// Override any other rules you want
8+
};

.vscode/settings.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"editor.formatOnSave": true,
3+
"prettier.eslintIntegration": true
4+
}

0 commit comments

Comments
 (0)