Skip to content

Commit

Permalink
feat: add yaml linting config
Browse files Browse the repository at this point in the history
  • Loading branch information
mdsanima committed Aug 24, 2024
1 parent 15d297c commit f5c96e6
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 f5c96e6

Please sign in to comment.