-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #200 from PHPCSStandards/develop
Release PHPCSExtra 1.0.0
- Loading branch information
Showing
15 changed files
with
242 additions
and
88 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
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,27 @@ | ||
# Template to use for release PRs from `develop` to `stable` | ||
|
||
PR for tracking changes for the x.x.x release. Target release date: **DOW MONTH DAY YEAR**. | ||
|
||
## Release checklist | ||
|
||
### General | ||
|
||
- [ ] Verify, and if necessary, update the allowed version ranges for various dependencies in the `composer.json` - PR #xxx | ||
- [ ] Add changelog for the release - PR #xxx | ||
:pencil2: Remember to add a release link at the bottom! | ||
- [ ] Update sniff list in `README` (if applicable) - PR #xxx. | ||
|
||
### Release | ||
|
||
- [ ] Merge this PR | ||
- [ ] Make sure all CI builds are green. | ||
- [ ] Tag and create a release (careful, GH defaults to `develop`!) & copy & paste the changelog to it. | ||
:pencil2: Don't forget to copy the link collection from the bottom of the changelog! | ||
- [ ] Make sure all CI builds are green. | ||
- [ ] Close the milestone | ||
- [ ] Open a new milestone for the next release | ||
- [ ] If any open PRs/issues which were milestoned for this release did not make it into the release, update their milestone. | ||
- [ ] Fast-forward `develop` to be equal to `master` | ||
|
||
### Publicize | ||
- [ ] Tweet about the release. |
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
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
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
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,5 @@ | ||
# Ignore rules for Remark. | ||
# Docs: https://github.com/unifiedjs/unified-engine/blob/HEAD/doc/ignore.md | ||
|
||
/node_modules/ | ||
/vendor/ |
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,36 @@ | ||
{ | ||
"plugins": [ | ||
"remark-gfm", | ||
["remark-lint-checkbox-character-style", "consistent"], | ||
["remark-lint-checkbox-content-indent", "consistent"], | ||
"remark-lint-definition-spacing", | ||
"remark-lint-file-extension", | ||
["remark-lint-linebreak-style", "unix"], | ||
["remark-lint-link-title-style", "\""], | ||
["remark-lint-ordered-list-marker-style", "."], | ||
"remark-lint-no-duplicate-defined-urls", | ||
"remark-lint-no-duplicate-definitions", | ||
"remark-lint-no-empty-url", | ||
"remark-lint-no-file-name-consecutive-dashes", | ||
"remark-lint-no-file-name-irregular-characters", | ||
"remark-lint-no-file-name-outer-dashes", | ||
"remark-lint-no-heading-like-paragraph", | ||
"remark-lint-no-literal-urls", | ||
"remark-lint-no-reference-like-url", | ||
"remark-lint-no-shortcut-reference-image", | ||
"remark-lint-no-table-indentation", | ||
"remark-lint-no-undefined-references", | ||
"remark-lint-no-unneeded-full-reference-image", | ||
"remark-lint-no-unneeded-full-reference-link", | ||
"remark-lint-no-unused-definitions", | ||
["remark-lint-strikethrough-marker", "~~"], | ||
["remark-lint-table-cell-padding", "consistent"], | ||
"remark-lint-heading-whitespace", | ||
"remark-lint-list-item-punctuation", | ||
"remark-lint-match-punctuation", | ||
"remark-lint-no-hr-after-heading", | ||
"remark-lint-are-links-valid-alive", | ||
"remark-lint-are-links-valid-duplicate", | ||
"remark-validate-links" | ||
] | ||
} |
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,22 @@ | ||
# Details on the default config: | ||
# https://yamllint.readthedocs.io/en/stable/configuration.html#default-configuration | ||
extends: default | ||
|
||
yaml-files: | ||
- '*.yaml' | ||
- '*.yml' | ||
- '.yamllint' | ||
|
||
# Rule documentation: https://yamllint.readthedocs.io/en/stable/rules.html | ||
rules: | ||
colons: | ||
max-spaces-after: -1 # Disabled to allow aligning of values. | ||
comments: | ||
min-spaces-from-content: 1 | ||
comments-indentation: {} | ||
document-start: | ||
present: false | ||
line-length: | ||
max: 145 | ||
truthy: | ||
allowed-values: ["true", "false", "on", "off"] |
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
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
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
Oops, something went wrong.