Skip to content

Commit bb9184a

Browse files
authored
Merge pull request LearningChain#15 from puki4416/feature/button
Feature/button
2 parents 377b230 + 62783cf commit bb9184a

File tree

8 files changed

+631
-33
lines changed

8 files changed

+631
-33
lines changed

client/.eslintrc.json

Lines changed: 16 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,19 @@
11
{
2-
"env": {
3-
"browser": true,
4-
"es2021": true
2+
"env": {
3+
"browser": true,
4+
"es2021": true
5+
},
6+
"extends": ["plugin:react/recommended", "google"],
7+
"parser": "@typescript-eslint/parser",
8+
"parserOptions": {
9+
"ecmaFeatures": {
10+
"jsx": true
511
},
6-
"extends": [
7-
"plugin:react/recommended",
8-
"google"
9-
],
10-
"parser": "@typescript-eslint/parser",
11-
"parserOptions": {
12-
"ecmaFeatures": {
13-
"jsx": true
14-
},
15-
"ecmaVersion": "latest",
16-
"sourceType": "module"
17-
},
18-
"plugins": [
19-
"react",
20-
"@typescript-eslint"
21-
],
22-
"rules": {
23-
}
12+
"ecmaVersion": "latest",
13+
"sourceType": "module"
14+
},
15+
"plugins": ["react", "@typescript-eslint"],
16+
"rules": {
17+
"max-len": ["error", {"code": 150}]
18+
}
2419
}

client/.prettierrc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"singleQuote": true,
2+
"singleQuote": true,
33
"semi": true,
44
"useTabs": false,
55
"tabWidth": 2,
66
"trailingComma": "all",
77
"printWidth": 80,
88
"arrowParens": "always",
99
"orderedImports": true,
10-
"bracketSpacing": true,
10+
"bracketSpacing": false,
1111
"jsxBracketSameLine": false
12-
}
12+
}

0 commit comments

Comments
 (0)