forked from rilldata/rill
-
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.
Additional typechecking with prettier update (rilldata#3774)
* move code quality deps to root, update config, temporarily downgrade some errors to warnings * cleanup * update prettier config for prettier 3.x * run prettier * ignore vendored files, leave comment about that * add rollup.config.js to ts checked files * update prettier config * fix review comments * fix group-uris.ts * fix dashboard-store-defaults * prettier post-merge fixes
- Loading branch information
Showing
392 changed files
with
2,773 additions
and
2,637 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,2 +1,6 @@ | ||
web-admin/build | ||
web-local/build | ||
web-local/build | ||
**/svelte.config.js | ||
|
||
# ignored vendored files from shoelace in web-common/src/components/modal | ||
web-common/src/components/modal/*.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
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 |
---|---|---|
|
@@ -18,6 +18,7 @@ proto/ | |
|
||
.env | ||
*.sql | ||
*.bin | ||
*.csv | ||
*.csv.gz | ||
*.tsv | ||
|
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,7 @@ | ||
{ | ||
"plugins": ["prettier-plugin-svelte"], | ||
"overrides": [ | ||
{ "files": "*.ts", "options": { "parser": "typescript" } }, | ||
{ "files": "*.svelte", "options": { "parser": "svelte" } } | ||
] | ||
} |
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
Oops, something went wrong.