Skip to content

Commit

Permalink
define a better client interface (#967)
Browse files Browse the repository at this point in the history
  • Loading branch information
rmorshea committed Apr 11, 2023
1 parent 8caf973 commit b1951cc
Show file tree
Hide file tree
Showing 22 changed files with 10,332 additions and 555 deletions.
6 changes: 3 additions & 3 deletions docs/source/_custom_js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 31 additions & 0 deletions src/client/.eslintrc.json
@@ -0,0 +1,31 @@
{
"env": {
"browser": true,
"node": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended"
],
"overrides": [],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["react", "@typescript-eslint"],
"rules": {
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-empty-function": "off",
"react/prop-types": "off"
},
"settings": {
"react": {
"version": "detect"
}
}
}
14 changes: 0 additions & 14 deletions src/client/apps/ui/src/index.ts

This file was deleted.

0 comments on commit b1951cc

Please sign in to comment.