diff options
author | Trevor Bramwell <tbramwell@linuxfoundation.org> | 2017-07-07 16:45:12 -0700 |
---|---|---|
committer | Trevor Bramwell <tbramwell@linuxfoundation.org> | 2017-08-29 11:57:27 -0700 |
commit | 1dd7217d50b163834e3b5a3d949af985ad7e9902 (patch) | |
tree | 0b15eb00361a1be310b063964529321786f1f546 /.yamllint | |
parent | 1bebb7f5836e7fd44ada95ebb0798b67ff624ada (diff) |
Fix Yamllint Violations for jjb/global
Includes a default .yamllint configuration file with line-length
producing a warning (instead of the default error) after 120 characters.
JIRA: RELENG-254
Change-Id: Ia46ec6451201c5e91d98901a6ff65360079b2c81
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
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..4402f17fa --- /dev/null +++ b/.yamllint @@ -0,0 +1,8 @@ +--- +extends: default + +rules: + # 120 chars should be enough and don't fail if a line is longer + line-length: + max: 120 + level: warning |