Skip to content

Commit 3c3e083

Browse files
committed
Apply pre-commit checks
1 parent 30343d4 commit 3c3e083

22 files changed

+737
-720
lines changed

.gitignore

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
# Notes
2-
temp*
3-
temp*/*
4-
!templates/
5-
6-
# Editors
7-
*sublime*
8-
.vs/*
9-
*swp
10-
11-
# Settings
12-
*toml
13-
14-
# Automation, Python
15-
automation/_output/*
16-
*__pycache__/
17-
18-
# Defaults
19-
.DS_Store
20-
21-
# duplicate items when build with docker
22-
docs/src/C*
23-
docs/src/LI*
1+
# Notes
2+
temp*
3+
temp*/*
4+
!templates/
5+
6+
# Editors
7+
*sublime*
8+
.vs/*
9+
*swp
10+
11+
# Settings
12+
*toml
13+
14+
# Automation, Python
15+
automation/_output/*
16+
*__pycache__/
17+
18+
# Defaults
19+
.DS_Store
20+
21+
# duplicate items when build with docker
22+
docs/src/C*
23+
docs/src/LI*

.markdownlint.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# https://github.com/DavidAnson/markdownlint
22
# https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md
33
MD007: false # permit indenting 4 spaces instead of 2
4-
MD013:
4+
MD013:
55
line_length: "88" # Line length limits
66
tables: false # disable for tables
77
headings: false # disable for headings
88
MD026: false # permit trailing punctuation in headings
99
MD033: # HTML elements allowed
10-
allowed_elements:
10+
allowed_elements:
1111
- "br"
1212
MD034: false # Bare URLs OK
13-
MD036: false # permit ephasis as heading
13+
MD036: false # permit emphasis as heading

.pre-commit-config.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ repos:
4141
entry: mdl
4242
language: ruby
4343
files: \.(md|mdown|markdown)$
44+
args:
45+
- "-r ~MD013"
4446

4547

4648
# flake8

CHANGELOG.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,49 +6,57 @@ Deck of Adventures adopts conventions outlined by
66
[Semantic Versioning](https://semver.org/): Major:Minor:Patch. As much of this convention
77
is specific to software development, we make the following general adjustments.
88

9-
1. MAJOR versions are for significant changes that may not be backwards compatible.
10-
2. MINOR versions add new features that are backwards compatible.
9+
1. MAJOR versions are for significant changes that may not be backwards compatible.
10+
2. MINOR versions add new features that are backwards compatible.
1111
3. PATCH versions are backwards compatible adjustments to central governing documents.
1212

1313
While untracked edits may change individual pages and patches may systematically change
1414
multiple pages, minor and major versions will be accompanied by descriptors detailing
1515
the nature of these changes.
1616

1717
## [1.0.0a5] - UNRELEASED
18-
+ Added Beastiary YAML
18+
19+
+ Added Bestiary YAML
1920
+ Updated name of Fate Points to Power Points
2021
+ Updated repo structure for mkdocs
2122
+ Added combined Power/Vulnerability spreadsheet
2223
+ Updated python conversion tool to be object oriented
2324

2425
## [1.0.0a4] - 2022-08-14
26+
2527
+ Added v1 GM Guide
2628
+ Added Adversary and House Actions
2729
+ Updated name of Primary Suit to Burn Mechanics
2830
+ Updated DR + Mod on Report
2931
+ Added 'Fatigued' Status Condition
3032

3133
## [1.0.0a3] - 2022-06-09
34+
3235
+ Added Fate Point naming convention
3336
+ Added premade level 1 characters
3437
+ Updated Epic Events
3538
+ Updated Rest Mechanics
36-
39+
3740
## [1.0.0a2] - 2022-03-19
41+
3842
+ Updated core mechanic, from banded capped to circular.
3943
+ Added tools for circular: printout
4044

4145
## [1.0.0a1] - 2022-03-01
46+
4247
+ Updated core mechanic, from threshold to banded target.
4348

4449
## [0.0.0a2] - 2022-02-10
45-
+ Changed Suit mechanic to start at Level 1 per
50+
51+
+ Changed Suit mechanic to start at Level 1 per
4652
[Issue #15](https://github.com/DeckofAdventures/TheGame/issues/15)
4753

4854
## [0.0.0a1] - 2022-01-14
55+
4956
+ Began porting notes to GitHub
5057
+ Added primary suit feature
5158
+ Further additions pending work on spells and backgrounds
5259

5360
## [0.0.0a0] - 2021-12-10
61+
5462
+ Started discussions and drafts

0 commit comments

Comments
 (0)