This repository has been archived by the owner on Apr 3, 2023. It is now read-only.
forked from microsoft/synthetic-data-showcase
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating code with rust core library, cli application, bindings for p…
…ython/wasm and a web application
- Loading branch information
1 parent
c5f2879
commit ef9588c
Showing
1,385 changed files
with
51,988 additions
and
989 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
node_modules/ | ||
storybook-static/ | ||
build/ | ||
dist/ | ||
lib/ | ||
coverage/ | ||
public/ | ||
.yarn/ | ||
.pnp.js | ||
.pnp.cjs | ||
.cache/ | ||
node_modules/ | ||
pkg/ | ||
target/ | ||
.eslintrc.js | ||
babel.config.js | ||
packages/webapp/src/workers/sds-wasm/worker.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/*! | ||
* Copyright (c) Microsoft. All rights reserved. | ||
* Licensed under the MIT license. See LICENSE file in the project. | ||
*/ | ||
module.exports = { | ||
extends: '@essex/eslint-config', | ||
rules: { | ||
'@typescript-eslint/no-explicit-any': 'off', | ||
'no-redeclare': 'off', | ||
'@typescript-eslint/no-redeclare': ['warn'], | ||
'@typescript-eslint/explicit-module-boundary-types': [ | ||
'warn', | ||
{ allowArgumentsExplicitlyTypedAsAny: true }, | ||
], | ||
// TODO: Re-enable | ||
'jsx-a11y/click-events-have-key-events': 0, | ||
'jsx-a11y/no-static-element-interactions': 0, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"*": ["essex prettify --staged"], | ||
"*.{js,jsx,ts,tsx}": ["essex lint --fix --staged"] | ||
} |
Oops, something went wrong.