Skip to content

Commit b1951cc

Browse files
authored
define a better client interface (#967)
1 parent 8caf973 commit b1951cc

22 files changed

+10332
-555
lines changed

docs/source/_custom_js/package-lock.json

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

src/client/.eslintrc.json

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"node": true,
5+
"es2021": true
6+
},
7+
"extends": [
8+
"eslint:recommended",
9+
"plugin:react/recommended",
10+
"plugin:@typescript-eslint/recommended"
11+
],
12+
"overrides": [],
13+
"parser": "@typescript-eslint/parser",
14+
"parserOptions": {
15+
"ecmaVersion": "latest",
16+
"sourceType": "module"
17+
},
18+
"plugins": ["react", "@typescript-eslint"],
19+
"rules": {
20+
"@typescript-eslint/ban-ts-comment": "off",
21+
"@typescript-eslint/no-explicit-any": "off",
22+
"@typescript-eslint/no-non-null-assertion": "off",
23+
"@typescript-eslint/no-empty-function": "off",
24+
"react/prop-types": "off"
25+
},
26+
"settings": {
27+
"react": {
28+
"version": "detect"
29+
}
30+
}
31+
}

src/client/apps/ui/src/index.ts

-14
This file was deleted.

0 commit comments

Comments
 (0)