Skip to content

Commit aced5c2

Browse files
authored
Merge pull request #8 from ReproNim/enh-codespell
Add codespell support (config, workflow to detect/not fix) and make it fix few typos
2 parents 9c1b6be + 4b45a9d commit aced5c2

File tree

3 files changed

+32
-1
lines changed

3 files changed

+32
-1
lines changed

.codespellrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[codespell]
2+
# Ref: https://github.com/codespell-project/codespell#using-a-config-file
3+
skip = .git*,*.svg,package-lock.json,*.css,.codespellrc
4+
check-hidden = true
5+
# ignore-regex =
6+
# ignore-words-list =

.github/workflows/codespell.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Codespell configuration is within .codespellrc
2+
---
3+
name: Codespell
4+
5+
on:
6+
push:
7+
branches: [main]
8+
pull_request:
9+
branches: [main]
10+
11+
permissions:
12+
contents: read
13+
14+
jobs:
15+
codespell:
16+
name: Check for spelling errors
17+
runs-on: ubuntu-latest
18+
19+
steps:
20+
- name: Checkout
21+
uses: actions/checkout@v4
22+
- name: Annotate locations with typos
23+
uses: codespell-project/codespell-problem-matcher@v1
24+
- name: Codespell
25+
uses: codespell-project/actions-codespell@v2

SimpleViewer/Tagged Training Products - Tagging Revision 1 .csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ID,Tag Team,Course Name,URL,Level,Platform,Keywords,Course Length,Instruction Medium,Delivery ,Language,Programming Language,Neuroimaging Software,Imaging Modality,Open Dataset,Last Updated ,Functionality,Assessment,Prerequisite,Source,Review,Exclude from ReproInventory,Alias Links,Notes,Quadrants
2-
ID in ReproNim Inventory,Who tagged this? ,Name of course,Link to course materials,Skill level of audience,OS / Machine,Content keywords,Number of hours or days,Format of course,How should the course be delivered?,Langauge of course material,,,,Is the dataset available ,When was it last updated?,Does the code still run (date of test or NA)?,Is the course graded?,,,,,,,
2+
ID in ReproNim Inventory,Who tagged this? ,Name of course,Link to course materials,Skill level of audience,OS / Machine,Content keywords,Number of hours or days,Format of course,How should the course be delivered?,Language of course material,,,,Is the dataset available ,When was it last updated?,Does the code still run (date of test or NA)?,Is the course graded?,,,,,,,
33
1,CW / BH / JB,Git course,https://git-course.netlify.app/,Beginner,Mac,"Git, Version Control, GitHub",1-4 hrs ,"Hands-on tutorial / notebooks, website","self-paced, instructor",English,Git,NA,NA,NA,2023,,No,None,ReproNim; Johanna Bayer; Fellow-22,,No,,,"problem-oriented (how to guides), learning-oriented (tutorials)"
44
5,CW/JB,Data Science in Communication: Python and Reproducible Research,"GitHub - yibeichan/COMM160DS: COMM 160DS: Data Science in Communication: Python and Reproducible Research (Spring 2023, University of California, Santa Barbara)",Beginner,Jupyter,"Python, NLP, Open Science, Reproducibility, Data Science, Pandas, Seaborn, Publish, Statistics",1+ weeks,"Hands-on tutorial / notebooks, lecture","self-paced, instructor",English,Python,NA,NA,,2023,,Yes,None,ReproNim; Yibei Chen; Fellow-22; UCSB,JupyterHub no longer accessible. Need to link GitHubClassroom to GitHub (uclear if links work once you do that),,,,learning-oriented (tutorials)
55
7,MH/CF/JB,Reproducible Data Management with DataLad - University of Munster 18/11/22,https://onedrive.live.com/?authkey=%21AFsNiGzveqZ750s&id=86184EF59C004002%21416672&cid=86184EF59C004002&parId=root&parQt=sharedby&o=OneUp,Beginner,NA,"Datalad, Version Control, Collect",<1 hr,"slides, lecture",instructor,English,Git,NA,NA,NA,2022,,No,None,ReproNim; Julian Kosciessa; Fellow-22; Donders Institute,"Short slide deck, very clear",No,,link does not work for me (JB) can someone double check,understanding-oriented (explanation)

0 commit comments

Comments
 (0)