-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add markdown linting to pre-commit (#721)
* add markdown lint pre-commit * remove lint from markdown * add missing newline
- Loading branch information
Bruce Martin
authored
Aug 28, 2023
1 parent
62e15e1
commit df211dc
Showing
27 changed files
with
684 additions
and
661 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
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Configuration for markdownlint-cli, used in pre-commit | ||
|
||
# Default state for all rules | ||
default: true | ||
|
||
# MD013/line-length - Line length increased to a large number | ||
MD013: | ||
line_length: 1000 | ||
|
||
# MD024/no-duplicate-heading/no-duplicate-header - Multiple headings with the same content | ||
MD024: | ||
allow_different_nesting: true | ||
|
||
# MD026/no-trailing-punctuation - Trailing punctuation in heading | ||
MD026: | ||
# Punctuation characters | ||
punctuation: ".,;。,;:!" | ||
|
||
# MD033/no-inline-html - disable, allowing HTML | ||
MD033: false | ||
|
||
# MD041/first-line-heading/first-line-h1 - First line in a file should be a top-level heading | ||
MD041: false |
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 @@ | ||
SECURITY.md |
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 |
---|---|---|
|
@@ -2,14 +2,13 @@ | |
|
||
# CZ CELLxGENE Discover Census | ||
|
||
|
||
The Census of [CZ CELLxGENE Discover](https://cellxgene.cziscience.com/) is a free-to-use service (API + Data) that allows for querying its single-cell data corpus at low-latency directly into Python or R. | ||
|
||
To learn more and start using the Census please go to the main [**Census site**](https://chanzuckerberg.github.io/cellxgene-census/). | ||
|
||
## Issues | ||
|
||
- Bugs: please submit a [github issue](https://github.com/chanzuckerberg/cellxgene-census/issues). | ||
- Bugs: please submit a [github issue](https://github.com/chanzuckerberg/cellxgene-census/issues). | ||
- Security issues: if you believe you have found a security issue, in lieu of filing an issue please responsibly disclose it by contacting <[email protected]>. | ||
|
||
## Reuse | ||
|
@@ -19,4 +18,3 @@ The contents of this Github repository are freely available for reuse under the | |
## Code of Conduct | ||
|
||
This project adheres to the Contributor Covenant [code of conduct](https://github.com/chanzuckerberg/.github/blob/master/CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code. Please report unacceptable behavior to <[email protected]>. | ||
|
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,9 +1,9 @@ | ||
# CZ CELLxGENE Discover Census | ||
|
||
The `cellxgene_census` package provides an API to facilitate the use of the CZ CELLxGENE Discover Census. For more information about the API and the project visit the [chanzuckerberg/cellxgene-census GitHub repo](https://github.com/chanzuckerberg/cellxgene-census/). | ||
|
||
The `cellxgene_census` package provides an API to facilitate the use of the CZ CELLxGENE Discover Census. For more information about the API and the project visit the [chanzuckerberg/cellxgene-census GitHub repo](https://github.com/chanzuckerberg/cellxgene-census/). | ||
|
||
## For More Help | ||
|
||
For more help, please file a issue on the repo, or contact us at <[email protected]>. | ||
|
||
If you believe you have found a security issue, we would appreciate notification. Please send email to <[email protected]>. |
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
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.