Skip to content

Commit c251f92

Browse files
committed
apply cruft updates.
1 parent 068a001 commit c251f92

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

.cruft.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"template": "https://github.com/ScreenPyHQ/cookiecutter_screenpy",
3-
"commit": "7d8cb97c36c257860ad555b8becd96115b64234d",
3+
"commit": "6a7488b4183f615ff319dbfdac38a3a1354953c7",
44
"checkout": null,
55
"context": {
66
"cookiecutter": {
@@ -12,7 +12,7 @@
1212
"author_email": "perry.goy@gmail.com",
1313
"github_username": "ScreenPyHQ",
1414
"_template": "https://github.com/ScreenPyHQ/cookiecutter_screenpy",
15-
"_commit": "7d8cb97c36c257860ad555b8becd96115b64234d"
15+
"_commit": "6a7488b4183f615ff319dbfdac38a3a1354953c7"
1616
}
1717
},
1818
"directory": null

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ You want to contribute? Great! Here are the things you should do before submitti
7171
1. `pip install -e .[dev]`
7272
1. Optional (poetry users):
7373
1. `poetry install --extras dev`
74-
1. Run `pre-commit install` once.
7574
1. Run `tox` to perform tests frequently.
7675
1. Create pull-request from your branch.
7776

pyproject.toml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,13 @@ select = [
4848
"ALL", # let's get all the new hotness and ignore as we need!
4949
]
5050
ignore = [
51-
"D107", # missing __init__ docstring, we do that in the class docstring.
52-
"D203", # one blank line before class docstring, no thanks!
53-
"D212", # multi line summary first line, we want a one line summary.
54-
"E501", # black handles our line limits.
55-
"N818", # we like our conventions with readable error classes.
56-
"S608", # we will not have SQL injection concerns. :P
51+
"COM812", # we prefer black's logic for trailing commas
52+
"D107", # missing __init__ docstring, we do that in the class docstring.
53+
"D203", # one blank line before class docstring, no thanks!
54+
"D212", # multi line summary first line, we want a one line summary.
55+
"E501", # black handles our line limits.
56+
"N818", # we like our conventions with readable error classes.
57+
"S608", # we will not have SQL injection concerns. :P
5758
]
5859

5960
extend-safe-fixes = [

0 commit comments

Comments
 (0)