Skip to content

Commit

Permalink
lint: [markdownlint] update rules
Browse files Browse the repository at this point in the history
- adds MD049 and MD050 rules to .markdownlint.jsonc
- updates README.md for consistent emphasis-style/MD049
- removes invalid textlint config file path from linter workflow
  • Loading branch information
meganindya committed Feb 11, 2022
1 parent d650930 commit 62e4a35
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ jobs:
JAVASCRIPT_ES_CONFIG_FILE: .eslintrc
TYPESCRIPT_ES_CONFIG_FILE: .eslintrc
MARKDOWN_CONFIG_FILE: .markdownlint.jsonc
NATURAL_LANGUAGE_CONFIG_FILE: .textlintrc
VALIDATE_ALL_CODEBASE: false
VALIDATE_CSS: false
VALIDATE_DOCKERFILE: false
Expand Down
10 changes: 10 additions & 0 deletions .markdownlint.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -246,5 +246,15 @@
"MD048": {
// Code fence syle
"style": "consistent"
},

// MD049/emphasis-style - Emphasis style should be consistent
"MD049": {
"style": "consistent"
},

// MD050/strong-style - Strong style should be consistent
"MD050": {
"style": "consistent"
}
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ top of the repository to follow and/or discuss about the planning progress.
A prototype has been built currently. Parallel development of the programming framework will be done
in the [**musicblocks-v4-lib**](https://github.com/sugarlabs/musicblocks-v4-lib) repository as mentioned
above. For updates, follow the `develop` branch and the feature branches that branch out of it.
Please look out for *Issues* tab of both repositories.
Please look out for _Issues_ tab of both repositories.

### New Contributors

Expand Down

0 comments on commit 62e4a35

Please sign in to comment.