Skip to content

Commit 65f0e80

Browse files
committed
Update configurations
Improve development experience.
1 parent 4ca441c commit 65f0e80

7 files changed

+66
-28
lines changed

.eslintrc.json

+6-22
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
},
99
"extends": [
1010
"eslint:recommended",
11-
"plugin:react/recommended"
11+
"plugin:react/recommended",
12+
"prettier"
1213
],
1314
"parser": "@babel/eslint-parser",
1415
"parserOptions": {
@@ -30,15 +31,12 @@
3031
}
3132
},
3233
"rules": {
33-
"indent": [
34-
"error",
35-
2
36-
],
34+
"indent": "off",
3735
"comma-dangle": [
3836
"error", {
3937
"arrays": "always-multiline",
4038
"objects": "always-multiline",
41-
"imports": "never",
39+
"imports": "always-multiline",
4240
"exports": "only-multiline",
4341
"functions": "never"
4442
}
@@ -81,10 +79,7 @@
8179
"allowSingleLine": true
8280
}
8381
],
84-
"curly": [
85-
"error",
86-
"multi-or-nest"
87-
],
82+
"curly": "off",
8883
"object-shorthand": [
8984
"warn",
9085
"always"
@@ -189,22 +184,11 @@
189184
"error",
190185
"never"
191186
],
192-
"space-before-function-paren": [
193-
"error",
194-
"never"
195-
],
187+
"space-before-function-paren": "off",
196188
"spaced-comment": [
197189
"error",
198190
"always"
199191
],
200-
"react/jsx-curly-spacing": [
201-
"error",
202-
{
203-
"when": "always",
204-
"attributes": true,
205-
"children": true
206-
}
207-
],
208192
"react/jsx-equals-spacing": [
209193
"error",
210194
"never"

.prettierignore

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.assets
2+
.build
3+
.cache
4+
.content
5+
.cypress
6+
.github
7+
.vscode
8+
content/sources
9+
coverage
10+
node_modules
11+
public
12+
static

.prettierrc

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"printWidth": 80,
3+
"arrowParens": "avoid",
4+
"singleQuote": true,
5+
"tabWidth": 2,
6+
"useTabs": false,
7+
"semi": true,
8+
"jsxSingleQuote": true,
9+
"trailingComma": "es5",
10+
"bracketSpacing": true,
11+
"jsxBracketSameLine": false
12+
}

.vscode/settings.json

+10-1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,14 @@
1212
"source.fixAll.eslint": true
1313
},
1414
"diffEditor.ignoreTrimWhitespace": false,
15-
"files.trimTrailingWhitespace": true
15+
"files.trimTrailingWhitespace": true,
16+
"[javascript]": {
17+
"editor.formatOnSaveMode": "file",
18+
"editor.defaultFormatter": "esbenp.prettier-vscode",
19+
},
20+
"[javascriptreact]": {
21+
"editor.formatOnSaveMode": "file",
22+
"editor.defaultFormatter": "esbenp.prettier-vscode",
23+
},
24+
"workbench.editor.labelFormat": "short"
1625
}

jsconfig.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
{
22
"compilerOptions": {
33
"baseUrl": "./src",
4-
"target": "es6"
4+
"target": "es6",
5+
"moduleResolution": "node"
56
},
67
"exclude": [
78
"node_modules"
89
]
9-
}
10+
}

package-lock.json

+20-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"css-loader": "^3.4.2",
2323
"cypress": "^4.12.1",
2424
"eslint": "^6.8.0",
25+
"eslint-config-prettier": "^6.15.0",
2526
"eslint-plugin-cypress": "^2.10.3",
2627
"eslint-plugin-react": "^7.19.0",
2728
"eslint-plugin-react-hooks": "^2.5.0",
@@ -42,6 +43,7 @@
4243
"jest-transform-stub": "^2.0.0",
4344
"mdast-util-to-hast": "^9.1.0",
4445
"node-sass": "^4.14.1",
46+
"prettier": "^2.2.1",
4547
"prismjs": "^1.19.0",
4648
"prop-types": "^15.7.2",
4749
"react": "^16.13.0",
@@ -71,6 +73,7 @@
7173
"debug": "NODE_PATH=src npx --node-arg '-r esm --nolazy --inspect-brk' node_modules/.bin/gatsby develop",
7274
"serve": "NODE_PATH=src npx --node-arg '-r esm' gatsby serve",
7375
"lint": "eslint './src/**/*.js' './src/**/*.jsx'",
76+
"format": "prettier --config .prettierrc --write './**/*.{js,jsx}'",
7477
"cy:open": "NODE_PATH=src npx --node-arg '-r esm' cypress open --config-file src/config/cypress.json",
7578
"cy:run": "NODE_PATH=src npx --node-arg '-r esm' cypress run --config-file src/config/cypress.json",
7679
"test": "cross-env NODE_PATH=src NODE_ENV=test jest --config src/config/jest.json --coverage",

0 commit comments

Comments
 (0)