-
-
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.
feat: Add YAML linting base configuration (#119)
- Loading branch information
Showing
1 changed file
with
18 additions
and
0 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,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 |