Skip to content

Commit

Permalink
Merge branch 'bids-standard:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
markmikkelsen authored May 31, 2024
2 parents 70117ad + 0f4f0b3 commit a98700e
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ repos:
args: [-f=standard, -c=.yamllint.yml]
files: src/schema/.*/.*\.yaml
- repo: https://github.com/codespell-project/codespell
rev: v2.2.6
rev: v2.3.0
hooks:
- id: codespell
args: ["--config=.codespellrc", "--dictionary=-", "--dictionary=.codespell_dict"]
Expand Down
11 changes: 7 additions & 4 deletions DECISION-MAKING.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,25 +21,28 @@ Current and past members of the steering group can be found

| Name | Time commitment | Scope | Joined |
|---------------------------------------------------------------------------|-----------------|---------------------------------------|----------|
| Stefan Appelhoff ([@sappelhoff](https://github.com/sappelhoff)) | 5h/week | Lead Maintainer | Mar 2020 |
| Stefan Appelhoff ([@sappelhoff](https://github.com/sappelhoff)) | 1h/week | | Mar 2020 |
| Chris Markiewicz ([@effigies](https://github.com/effigies)) | 5h/week | | Mar 2020 |
| Ross Blair ([@rwblair](https://github.com/rwblair)) | | Maintainer of the bids-validator | Mar 2020 |
| Taylor Salo ([@tsalo](https://github.com/tsalo)) | 3h/week | MRI | Sep 2020 |
| Remi Gau ([@Remi-Gau](https://github.com/Remi-Gau)) | 3h/week | Community development, MRI | Oct 2020 |
| Anthony Galassi ([@bendhouseart](https://github.com/bendhouseart)) | 3h/week | PET, Community development | Sep 2021 |
| Eric Earl ([@ericearl](https://github.com/ericearl)) | 2h/week | | Dec 2021 |
| Christine Rogers ([@christinerogers](https://github.com/christinerogers)) | 2h/mo | Interoperability, EEG and multi-modal | Apr 2023 |
| Christine Rogers ([@christinerogers](https://github.com/christinerogers)) | 2h/month | Interoperability, EEG and multi-modal | Apr 2023 |
| Nell Hardcastle ([@nellh](https://github.com/nellh)) | 2h/week | | Jul 2023 |
| Kimberly Ray ([@KimberlyLRay](https://github.com/KimberlyLRay)) | 1h/week | | Nov 2022 |
| Kimberly Ray ([@KimberlyLRay](https://github.com/KimberlyLRay)) | 1h/week | | Nov 2022 |

In addition to the [BIDS Governance](https://bids.neuroimaging.io/governance.html#bids-maintainers-group)
classification of a maintainer, maintainers may declare a limited scope of responsibility.
Such a scope can range from maintaining a modality supported in the specification to nurturing a
welcoming BIDS community.
One or more scopes can be chosen by the maintainer and agreed upon by the Maintainers Group.
Any number of scopes can be chosen by the maintainer and agreed upon by the Maintainers Group.
A maintainer is primarily responsible for issues within their chosen scope(s), although
contributions elsewhere are welcome, as well.

The role of the "lead maintainer", that is, the BIDS maintainer currently representing the maintainers group,
is rotating among current maintainers.

#### Past maintainers group members

| Name | Duration |
Expand Down
15 changes: 15 additions & 0 deletions src/schema/rules/checks/hints.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@

### Dataset level

# 101
# This check should probably be replaced by making sure rules.files.common.core.README is
# hit, but this is the short path forward.
ReadmeFileMissing:
issue:
code: README_FILE_MISSING
message: |
The recommended file /README is missing.
See Section 03 (Modality agnostic files) of the BIDS specification.
level: warning
selectors:
- path == '/dataset_description.json'
checks:
- exists(["/README", "/README.txt", "/README.md", "/README.rst"], "dataset") > 0

# 102
TooFewAuthors:
issue:
Expand Down

0 comments on commit a98700e

Please sign in to comment.