-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Working MCS * further improve task handling * Added some testing for the service * remove unused files * sort all imports * Reformat and fix tests * remove unnecessary * more clean up * remove * delete evaluator
- Loading branch information
Showing
26 changed files
with
2,593 additions
and
1,312 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 |
---|---|---|
@@ -1,19 +1,20 @@ | ||
{ | ||
"**/!(.eslintrc)*.{js,jsx,ts,tsx,sol}": [ | ||
"eslint --ignore-path .gitignore --max-warnings 0", | ||
"prettier --ignore-path .gitignore --write", | ||
"prettier --ignore-path .gitignore --log-level warn --check" | ||
], | ||
"**/*.{md,json}": [ | ||
"prettier --ignore-path .gitignore --write", | ||
"prettier --ignore-path .gitignore --log-level warn --check" | ||
], | ||
"**/*.py": [ | ||
"poetry run ruff check --fix --force-exclude", | ||
"pnpm pyright" | ||
], | ||
"warehouse/dbt/**/*.sql": [ | ||
"poetry run sqlfluff fix -f", | ||
"poetry run sqlfluff lint" | ||
] | ||
"**/!(.eslintrc)*.{js,jsx,ts,tsx,sol}": [ | ||
"eslint --ignore-path .gitignore --max-warnings 0", | ||
"prettier --ignore-path .gitignore --write", | ||
"prettier --ignore-path .gitignore --log-level warn --check" | ||
], | ||
"**/*.{md,json}": [ | ||
"prettier --ignore-path .gitignore --write", | ||
"prettier --ignore-path .gitignore --log-level warn --check" | ||
], | ||
"**/*.py": [ | ||
"poetry run ruff check --fix --force-exclude", | ||
"poetry run isort", | ||
"pnpm pyright" | ||
], | ||
"warehouse/dbt/**/*.sql": [ | ||
"poetry run sqlfluff fix -f", | ||
"poetry run sqlfluff lint" | ||
] | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Empty file.
Oops, something went wrong.