-
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.
Merge pull request #6 from phirSOFT/release/0.2.0
Release/0.2.0
- Loading branch information
Showing
18 changed files
with
808 additions
and
945 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 |
---|---|---|
@@ -0,0 +1,110 @@ | ||
# Default Restyler Configuration | ||
# | ||
# Overall notes: | ||
# | ||
# - All keys are optional and default as shown | ||
# - The entire config can also be just a list of values, which will be | ||
# interpreted as specifying the restylers key | ||
# | ||
#### | ||
|
||
# Do anything at all? | ||
enabled: true | ||
|
||
# Push the style fixes directly to the original PR | ||
# | ||
# This setting implies pull_requests: false for origin PRs, and has no effect on | ||
# forked PRs (since we can't push to those). | ||
# | ||
auto: false | ||
|
||
# Download remote files before restyling | ||
# | ||
# Example: | ||
# | ||
# remote_files: | ||
# - url: https://raw.github.com/.../hlint.yaml | ||
# path: .hlint.yaml | ||
# | ||
# Files must be publicly accessible. | ||
# | ||
remote_files: [] | ||
|
||
# Open Restyle PRs? | ||
pull_requests: true | ||
|
||
# Leave comments on the original PR linking to the Restyle PR? | ||
comments: false | ||
|
||
# Set commit statuses on the original PR? | ||
statuses: | ||
# Red status in the case of differences found | ||
differences: true | ||
# Green status in the case of no differences found | ||
no_differences: true | ||
# Red status if we encounter errors restyling | ||
error: true | ||
|
||
# Request review on the Restyle PR? | ||
# | ||
# Possible values: | ||
# | ||
# author: From the author of the original PR | ||
# owner: From the owner of the repository | ||
# | ||
# One value will apply to origin and forked PRs, but you can also specify | ||
# separate values. | ||
# | ||
request_review: none | ||
|
||
# Add labels to any created Restyle PRs | ||
# | ||
# These can be used to tell other automation to avoid our PRs. | ||
# | ||
labels: [] | ||
|
||
# Labels to ignore | ||
# | ||
# PRs with any of these labels will be ignored by Restyled. | ||
# | ||
ignore_labels: | ||
- restyled-ignore | ||
|
||
# Which restylers to run | ||
# | ||
# See restyled-io/restylers repository for their defaults. | ||
# | ||
restylers: | ||
# - astyle | ||
- autopep8 | ||
- black | ||
# - brittany | ||
- dfmt | ||
- elm-format | ||
# - google-java-format | ||
# - hindent | ||
# - hlint | ||
# - jdt | ||
- pg_format | ||
- php-cs-fixer | ||
- prettier | ||
- prettier-markdown | ||
- prettier-yaml | ||
- prettier-ruby | ||
- reorder-python-imports | ||
- rubocop | ||
- rustfmt | ||
- shellharden | ||
- shfmt | ||
- stylish-haskell | ||
- terraform | ||
- yapf | ||
|
||
# Version of the set of Restylers to run | ||
# | ||
# This should correspond to a ref on the restyled-io/restylers repository, | ||
# usually it's a tag that is a date of when that set was released. You could | ||
# re-specify the default in your own config if you prefer to avoid update | ||
# surprises. | ||
# | ||
restylers_version: "20190910" |
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,20 @@ | ||
# 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.0.0/). | ||
|
||
If possible we are following the rules of | ||
[Semantic Versioning](https://semver.org/spec/v2.0.0.html), but we try to keep | ||
the major version in sync with | ||
[phirSOFT/SettingsService](https://github.com/phirSOFT/SettingsService) to avoid | ||
confusion. | ||
|
||
## [0.2.0] - unreleased | ||
|
||
### Changed | ||
|
||
- Update References: Use | ||
[phirSOFT.SettingService.Abstractions 0.2.0](https://www.nuget.org/packages/phirSOFT.SettingsService.Abstractions/0.2.0) | ||
and | ||
[phirSOFT.SettingService 0.2.0](https://www.nuget.org/packages/phirSOFT.SettingsService/0.2.0) |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.