-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
825c065
commit dcbbdbf
Showing
5 changed files
with
57 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -162,8 +162,6 @@ cython_debug/ | |
#.idea/ | ||
|
||
|
||
# | ||
.vscode/ | ||
|
||
asm/ | ||
*.z64 | ||
|
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,14 @@ | ||
{ | ||
// https://github.com/DavidAnson/markdownlint/blob/main/doc/md024.md | ||
// MD024 - Multiple headings with the same content | ||
"MD024": { | ||
"siblings_only": true | ||
}, | ||
|
||
// https://github.com/DavidAnson/markdownlint/blob/main/doc/md013.md | ||
// MD013 - Line length | ||
"MD013": { | ||
"code_block_line_length": 120, | ||
"headings": 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,7 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=827846 | ||
// for the documentation about the extensions.json format | ||
"recommendations": [ | ||
"davidanson.vscode-markdownlint" | ||
] | ||
} |
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 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
### Added | ||
|
||
- Allow invoking `ipl3checksum` as a CLI program | ||
- Currently it only allows the `-V`/`--version` to print the version of the library | ||
- A `CHANGELOG.md` | ||
|
||
## [1.0.0] - 2023-09-21 | ||
|
||
### Added | ||
|
||
- Initial relase | ||
|
||
[unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/1.0.0...HEAD | ||
[1.0.0]: https://github.com/Decompollaborate/ipl3checksum/releases/tag/1.0.0 |
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