Skip to content

Commit d129d24

Browse files
author
Bruce Martin
authored
add mdformat pre-commit (#259)
1 parent c018435 commit d129d24

3 files changed

Lines changed: 177 additions & 179 deletions

File tree

.pre-commit-config.yaml

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ repos:
44
# Start with the basic pre-commit hooks
55

66
- repo: https://github.com/pre-commit/pre-commit-hooks
7-
rev: v4.6.0
7+
rev: v5.0.0
88
hooks:
99
- id: trailing-whitespace
1010
- id: end-of-file-fixer
@@ -14,7 +14,7 @@ repos:
1414
# Then others in alphabetical order:
1515

1616
- repo: https://github.com/astral-sh/ruff-pre-commit
17-
rev: v0.5.5
17+
rev: v0.11.9
1818
hooks:
1919
- id: ruff
2020

@@ -23,19 +23,17 @@ repos:
2323
# the entire dependency list here we only install `attrs`. It will catch
2424
# a useful subset of errors but does not replace a full mypy run
2525
# (either locally or in CI).
26-
rev: v1.11.1
26+
rev: v1.15.0
2727
hooks:
2828
- id: mypy
2929
additional_dependencies: [attrs]
3030

31-
- repo: https://github.com/pre-commit/mirrors-prettier
32-
rev: v3.0.3
33-
hooks:
34-
- id: prettier
35-
# For now we let this act on all files; if need be we can restrict it
36-
# with `types_or` in the future.
37-
3831
- repo: https://github.com/psf/black
39-
rev: "24.4.2"
32+
rev: "25.1.0"
4033
hooks:
4134
- id: black
35+
36+
- repo: https://github.com/hukkin/mdformat
37+
rev: 0.7.22 # Use the ref you want to point at
38+
hooks:
39+
- id: mdformat

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ This has resulted in a need for scalable solutions to accommodate data sizes tha
1212
To address these emerging needs in the single cell ecosystem, the Chan Zuckerberg Initiative in partnership with TileDB is:
1313

1414
1. Driving the development of SOMA.
15-
2. Providing its first implementation, [TileDB-SOMA](https://github.com/single-cell-data/TileDB-SOMA) which utilizes the [TileDB Embedded](https://github.com/TileDB-Inc/TileDB) engine.
16-
3. Adopting TileDB-SOMA at [CZ CELLxGENE Discover](https://cellxgene.cziscience.com/) to build its [Census](https://github.com/chanzuckerberg/cellxgene-census/) which provides efficient access and querying to a corpus containing nearly 50 million cells, compiled from 700+ datasets.
15+
1. Providing its first implementation, [TileDB-SOMA](https://github.com/single-cell-data/TileDB-SOMA) which utilizes the [TileDB Embedded](https://github.com/TileDB-Inc/TileDB) engine.
16+
1. Adopting TileDB-SOMA at [CZ CELLxGENE Discover](https://cellxgene.cziscience.com/) to build its [Census](https://github.com/chanzuckerberg/cellxgene-census/) which provides efficient access and querying to a corpus containing nearly 50 million cells, compiled from 700+ datasets.
1717

1818
The `SOMA` specification and its `TileDB-SOMA` implementation provide the following capabilities for single-cell data:
1919

0 commit comments

Comments
 (0)