From 1dd7217d50b163834e3b5a3d949af985ad7e9902 Mon Sep 17 00:00:00 2001 From: Trevor Bramwell Date: Fri, 7 Jul 2017 16:45:12 -0700 Subject: 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 --- .yamllint | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .yamllint (limited to '.yamllint') 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 -- cgit