Skip to content

Commit 3af8b58

Browse files
committed
update deps and format
1 parent dcbb9e3 commit 3af8b58

File tree

9 files changed

+2124
-2121
lines changed

9 files changed

+2124
-2121
lines changed

.prettierignore

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
.git/*
2+
.DS_Store
3+
4+
license
5+
yarn.lock
6+
.travis.yml
7+
8+
.yarnclean
9+
.eslintignore
10+
.prettierignore
11+
.npmignore
12+
.gitignore
13+
.gitattributes
14+
.dockerignore
15+
.editorconfig
16+
17+
dist
18+
build
19+
20+
*.ico
21+
*.html
22+
*.log
23+
*.svg
24+
*.map
25+
*.png
26+
*.snap
27+
*.ttf
28+
*.sh
29+
*.txt

.prettierrc

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"bracketSpacing": true,
3+
"jsxBracketSameLine": false,
4+
"printWidth": 80,
5+
"semi": true,
6+
"singleQuote": true,
7+
"tabWidth": 2,
8+
"trailingComma": "none",
9+
"useTabs": false,
10+
"overrides": [
11+
{
12+
"files": [
13+
".prettierrc",
14+
".eslintrc",
15+
".babelrc",
16+
".tern-project",
17+
".stylelintrc",
18+
".lighthouserc"
19+
],
20+
"options": {
21+
"parser": "json"
22+
}
23+
},
24+
{
25+
"files": ["package.json"],
26+
"options": {
27+
"printWidth": 180
28+
}
29+
}
30+
]
31+
}

0 commit comments

Comments
 (0)