Skip to content

Commit 2645d58

Browse files
committed
chore: update prettier.
1 parent f015032 commit 2645d58

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.prettierignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
**/*.yml
55
package.json
66
node_modules
7-
dist
87
build
8+
coverage
9+
dist
910
lib
1011
test

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"css:build:dist": "compile-less -d src --combine lib/dist.css --rm-global",
2222
"ts:watch": "tsbb watch --env-name esm:dev --env-name cjs --target react",
2323
"ts:build": "tsbb build --target react",
24-
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
24+
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,css,md,json}\"",
2525
"test": "kkt test --env=jsdom --app-src=./website",
2626
"test:coverage": "kkt test --env=jsdom --coverage --app-src=./website"
2727
},
@@ -36,7 +36,7 @@
3636
"src"
3737
],
3838
"lint-staged": {
39-
"*.{js,jsx,tsx,ts,less,md,json}": [
39+
"*.{js,jsx,tsx,ts,less,css,md,json}": [
4040
"prettier --write"
4141
]
4242
},

renovate.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
{
2-
"extends": [
3-
"config:base"
4-
]
2+
"extends": ["config:base"]
53
}

website/App.css

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
body {
22
margin: 0;
33
padding: 0;
4-
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
5-
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
6-
sans-serif;
4+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans',
5+
'Droid Sans', 'Helvetica Neue', sans-serif;
76
-webkit-font-smoothing: antialiased;
87
-moz-osx-font-smoothing: grayscale;
98
}
@@ -25,12 +24,14 @@ body {
2524
margin-top: 5px;
2625
}
2726

28-
.App-tools, .App-editor, .info {
27+
.App-tools,
28+
.App-editor,
29+
.info {
2930
max-width: 593px;
3031
margin: 0 auto;
3132
}
3233

3334
.info {
3435
padding-top: 35px;
3536
padding-bottom: 60px;
36-
}
37+
}

0 commit comments

Comments
 (0)