Skip to content
This repository has been archived by the owner on Apr 3, 2023. It is now read-only.

Commit

Permalink
Updating code with rust core library, cli application, bindings for p…
Browse files Browse the repository at this point in the history
…ython/wasm and a web application
  • Loading branch information
rracanicci committed Dec 8, 2021
1 parent c5f2879 commit ef9588c
Show file tree
Hide file tree
Showing 1,385 changed files with 51,988 additions and 989 deletions.
17 changes: 17 additions & 0 deletions .eslintignore
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
19 changes: 19 additions & 0 deletions .eslintrc.js
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,
},
}
31 changes: 31 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,34 @@
# VSCode
.vscode/

# Rust ignores
target/
pkg/

# TS/JS ignores
node_modules/
build/
dist/
out/
lib/
coverage/
deploy.zip

# Yarn v2 Gitignores - https://yarnpkg.com/getting-started/qa/#which-files-should-be-gitignored
.yarn/*
!.yarn/cache
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

# Sample / typical outputs
german_credit_showcase/
credit_config.json
*data*/
!data_block/
!dataShowcaseContext/
*output*/

# Byte-compiled / optimized / DLL files
Expand Down Expand Up @@ -109,6 +136,7 @@ celerybeat.pid

# Environments
.env
!packages/webapp/.env
.venv
env/
venv/
Expand All @@ -133,3 +161,6 @@ dmypy.json

# Pyre type checker
.pyre/

# Platform files
.DS_Store
4 changes: 4 additions & 0 deletions .lintstagedrc.json
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"]
}
Loading

0 comments on commit ef9588c

Please sign in to comment.