Skip to content

Commit ab8400c

Browse files
committed
chore: apply prettier formatting
1 parent 680449f commit ab8400c

File tree

7 files changed

+18
-17
lines changed

7 files changed

+18
-17
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
id-token: write
9999

100100
environment:
101-
name: npmjs
101+
name: npmjs
102102

103103
steps:
104104
- uses: actions/setup-node@v4

.prettierignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ node_modules/
88
packages/backend/embedding_atlas/widget_static/
99
packages/docs/.vitepress/cache/
1010
packages/docs/public/
11-
packages/docs/demo_data/
11+
packages/docs/demo-data/
1212
packages/umap-wasm/runtime.js
1313
packages/umap-wasm/notebooks/data/
1414
packages/umap-wasm/third_party/

CODE_OF_CONDUCT.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,21 @@ appearance, race, religion, or sexual identity and orientation.
1414
Examples of behavior that contributes to creating a positive environment
1515
include:
1616

17-
* Using welcoming and inclusive language
18-
* Being respectful of differing viewpoints and experiences
19-
* Gracefully accepting constructive criticism
20-
* Focusing on what is best for the community
21-
* Showing empathy towards other community members
17+
- Using welcoming and inclusive language
18+
- Being respectful of differing viewpoints and experiences
19+
- Gracefully accepting constructive criticism
20+
- Focusing on what is best for the community
21+
- Showing empathy towards other community members
2222

2323
Examples of unacceptable behavior by participants include:
2424

25-
* The use of sexualized language or imagery and unwelcome sexual attention or
25+
- The use of sexualized language or imagery and unwelcome sexual attention or
2626
advances
27-
* Trolling, insulting/derogatory comments, and personal or political attacks
28-
* Public or private harassment
29-
* Publishing others' private information, such as a physical or electronic
27+
- Trolling, insulting/derogatory comments, and personal or political attacks
28+
- Public or private harassment
29+
- Publishing others' private information, such as a physical or electronic
3030
address, without explicit permission
31-
* Other conduct which could reasonably be considered inappropriate in a
31+
- Other conduct which could reasonably be considered inappropriate in a
3232
professional setting
3333

3434
## Our Responsibilities
@@ -68,4 +68,4 @@ members of the project's leadership.
6868
## Attribution
6969

7070
This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org), version 1.4,
71-
available at [https://www.contributor-covenant.org/version/1/4/code-of-conduct.html](https://www.contributor-covenant.org/version/1/4/code-of-conduct.html)
71+
available at [https://www.contributor-covenant.org/version/1/4/code-of-conduct.html](https://www.contributor-covenant.org/version/1/4/code-of-conduct.html)

packages/backend/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ embedding-atlas path_to_dataset.parquet --x projection_x --y projection_y --neig
5454
```
5555

5656
The `neighbors` column should have values in the following format: `{"ids": [id1, id2, ...], "distances": [d1, d2, ...]}`.
57-
If this column is specified, you'll be able to see nearest neighbors for a selected point in the tool.
57+
If this column is specified, you'll be able to see nearest neighbors for a selected point in the tool.

packages/docs/streamlit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ Note that it's also possible to use the component without projection:
4949
value = embedding_atlas(df)
5050
```
5151

52-
Without `x` and `y` the widget will fall back to a table and charts only mode.
52+
Without `x` and `y` the widget will fall back to a table and charts only mode.

packages/docs/tool.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ To avoid package installation issues, we recommend using the [uv package manager
2323
```bash
2424
uvx embedding-atlas
2525
```
26+
2627
:::
2728

2829
## Loading Data

packages/viewer/src/lib/database_utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ export async function initializeDatabase(
2020
const conn = await wasmConnector({ duckdb: db.duckdb, connection: db.connection });
2121
coordinator.databaseConnector(conn);
2222
} else if (type == "socket") {
23-
const conn = await socketConnector({uri: uri ?? ""});
23+
const conn = await socketConnector({ uri: uri ?? "" });
2424
coordinator.databaseConnector(conn);
2525
} else if (type == "rest") {
26-
const conn = await restConnector({uri: uri ?? ""});
26+
const conn = await restConnector({ uri: uri ?? "" });
2727
coordinator.databaseConnector(conn);
2828
}
2929
}

0 commit comments

Comments
 (0)