Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-json
- id: check-merge-conflict
- id: detect-private-key

- repo: https://github.com/timothycrosley/isort
rev: 5.5.4
hooks:
- id: isort
args: ["--profile", "black"]
additional_dependencies:
- toml

- repo: https://github.com/ambv/black
rev: 20.8b1
hooks:
- id: black
args: ['.']

- repo: https://gitlab.com/pycqa/flake8
rev: 3.8.4
hooks:
- id: flake8
args:
- --max-line-length=120
- --ignore=E501 grpc_pdm_demo/stubs/ grpc_pdm_demo/protobuf/
5 changes: 2 additions & 3 deletions debian/changelog
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ wasp (1.0.6) UNRELEASED; urgency=low
* Directory Location correct
* Icons, related applications, validation and almost full manifest functionality
* Refactor to remove unused prompts, and account for cleaner design
* Updated heavily to support package.json in a few forms. Basic working versio
n for manifest.json
* Updated Package to split into 4 seperate files to help properly manage class files
* Updated heavily to support package.json in a few forms. Basic working version for manifest.json
* Updated Package to split into 4 separate files to help properly manage class files

-- Devin Matte <devinmatte@Mjolnir> Sun, 08 Oct 2017 18:21:49 -0400
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}
Description: A command line utility for generating and managing web configuration files.
Wasp Generates and creates basic resources for a modern web app.
Initializes a project with a manifest, package, and helps you tags versions effectively
Initializes a project with a manifest, package, and helps you tags versions effectively
2 changes: 1 addition & 1 deletion man/wasp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.\" Manpage for wasp.
.\" For formatting reference, see the manpage for mdoc (man mdoc)
.\" For formatting reference, see the manpage for mdoc (man mdoc)
.Dd October 27, 2017
.\" .Os with no arguments defaults to BSD? Not sure what to give for arguments.
.Os\"[OPERATING_SYSTEM] [version/release]
Expand Down
Loading