Skip to content

Commit

Permalink
add editorconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
cikupin committed Aug 10, 2021
1 parent 4966b22 commit ac769af
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 8 deletions.
12 changes: 12 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
root = true

[*]
trim_trailing_whitespace = true
insert_final_newline = true
charset = utf-8

[*.{tml,toml,yml,yaml}]
indent_size = 2

[Makefile]
indent_style = tab
2 changes: 1 addition & 1 deletion .github/workflows/lint-charts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ jobs:

- name: Set up chart-testing
uses: helm/[email protected]

- name: Run chart-testing (lint)
run: ct lint --config ct.yaml
6 changes: 3 additions & 3 deletions .github/workflows/sync-readme.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Copy README.md to temp folder
run: |
cp -f README.md ${{ runner.temp }}/README.md
- name: Checkout to gh-pages branch
uses: actions/checkout@v2
with:
ref: gh-pages

- name: Push README.md from temp folder to gh-pages branch
run: |
cp -f ${{ runner.temp }}/README.md .
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
.idea
.vscode
.project
.settings
.settings
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ The chart `version` should follow [semver](https://semver.org/).
Charts should start at `1.0.0`. Any breaking (backwards incompatible) changes to a chart should:

1. Bump the MAJOR version
2. In the README, under a section called "Upgrading", describe the manual steps necessary to upgrade to the new (specified) MAJOR version
2. In the README, under a section called "Upgrading", describe the manual steps necessary to upgrade to the new (specified) MAJOR version
2 changes: 1 addition & 1 deletion charts/gke-node-termination-handler/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ extraArgs: []
env:
SLACK_WEBHOOK_URL: ""

hostNetwork: true
hostNetwork: true
2 changes: 1 addition & 1 deletion ct.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ target-branch: main
chart-dirs:
- charts
helm-extra-args: --timeout 600s
validate-maintainers: false
validate-maintainers: false

0 comments on commit ac769af

Please sign in to comment.