Skip to content

Commit 2ac5ec9

Browse files
author
w-okada
committed
update
1 parent bc6e8a9 commit 2ac5ec9

File tree

7 files changed

+457
-459
lines changed

7 files changed

+457
-459
lines changed

client/.vscode/settings.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"workbench.colorCustomizations": {
3+
"tab.activeBackground": "#65952acc"
4+
},
5+
"editor.defaultFormatter": "esbenp.prettier-vscode",
6+
"prettier.printWidth": 1024,
7+
"prettier.tabWidth": 4,
8+
"files.associations": {
9+
"*.css": "postcss"
10+
}
11+
}

client/demo/.vscode/settings.json

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
{
2-
"files.associations": {
3-
"*.css": "postcss"
4-
},
52
"workbench.colorCustomizations": {
63
"tab.activeBackground": "#65952acc"
4+
},
5+
"editor.defaultFormatter": "esbenp.prettier-vscode",
6+
"prettier.printWidth": 1024,
7+
"prettier.tabWidth": 4,
8+
"files.associations": {
9+
"*.css": "postcss"
710
}
811
}

client/demo/src/components/demo/010_Demo.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React from "react"
1+
import React from "react";
22
import { GuiStateProvider } from "./001_GuiStateProvider";
33
import { Dialogs } from "./900_Dialogs";
44
import { ModelSlotControl } from "./b00_ModelSlotControl";
@@ -13,5 +13,5 @@ export const Demo = () => {
1313
<ModelSlotControl></ModelSlotControl>
1414
</div>
1515
</GuiStateProvider>
16-
)
17-
}
16+
);
17+
};

client/lib/.vscode/settings.json

+9-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
{
2-
"workbench.colorCustomizations": {
3-
"tab.activeBackground": "#65952acc"
4-
},
5-
"editor.defaultFormatter": "esbenp.prettier-vscode",
6-
"prettier.printWidth": 1024,
7-
"prettier.tabWidth": 4
2+
"workbench.colorCustomizations": {
3+
"tab.activeBackground": "#65952acc"
4+
},
5+
"editor.defaultFormatter": "esbenp.prettier-vscode",
6+
"prettier.printWidth": 1024,
7+
"prettier.tabWidth": 4,
8+
"files.associations": {
9+
"*.css": "postcss"
10+
}
811
}

0 commit comments

Comments
 (0)