diff options
| author | John Bampton <[email protected]> | 2020-12-15 22:46:26 +1000 |
|---|---|---|
| committer | John Bampton <[email protected]> | 2020-12-15 23:39:36 +1000 |
| commit | aa6fc8c38e5b3ab5dd30c08ee6e88a0936b465b1 (patch) | |
| tree | 7a9bddb0301235a8adf98516247885ef6b50e148 /.yamllint | |
| parent | c1c8c25e70a54e6a82ab8cea05c115b94eb3d5ab (diff) | |
| download | mruby-aa6fc8c38e5b3ab5dd30c08ee6e88a0936b465b1.tar.gz mruby-aa6fc8c38e5b3ab5dd30c08ee6e88a0936b465b1.zip | |
feat(CI): add a GitHub Action to lint the YAML
- Run only on pull request
- Add a `.yamllint` config file
- Lint YAML
Diffstat (limited to '.yamllint')
| -rw-r--r-- | .yamllint | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.yamllint b/.yamllint new file mode 100644 index 000000000..88f3b4eb9 --- /dev/null +++ b/.yamllint @@ -0,0 +1,8 @@ +--- + +extends: default + +rules: + document-start: disable + line-length: disable + truthy: false |
