Skip to content

Commit

Permalink
feat: Add YAML linting base configuration (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdsanima authored Sep 1, 2024
1 parent 448dc2a commit 4895423
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .yamllint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Maintain a consistent coding style across the entire project by maintaining a consistent style.

# Linter configuration for YAML files. This tool uses a set of rules to check source files for
# problems such as lines length, trailing spaces, indentation and more. The tool is available as
# command line tool and is written in Python. See docs: https://github.com/adrienverge/yamllint

# The rules are still a work in progress and subject to change. I still need to think about this.

---
extends: default

rules:

line-length:
max: 100
level: warning

indentation: enable

0 comments on commit 4895423

Please sign in to comment.