From 66aa422ce4201c0a6a325be805018f47be68bff4 Mon Sep 17 00:00:00 2001 From: jmontoyaa Date: Mon, 8 Jan 2018 10:21:05 +0100 Subject: [PATCH] Add .yamlconfig --- .flintci.yml | 4 +++- .yamllint_config | 10 ++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 .yamllint_config diff --git a/.flintci.yml b/.flintci.yml index 84050117ac..4a3483b225 100644 --- a/.flintci.yml +++ b/.flintci.yml @@ -1,3 +1,5 @@ services: phpcsfixer: true - yamllint: true + yamllint: + version: latest + config_path: .yamllint_config diff --git a/.yamllint_config b/.yamllint_config new file mode 100644 index 0000000000..87c3168be5 --- /dev/null +++ b/.yamllint_config @@ -0,0 +1,10 @@ + +ignore: | + app/* + .travis.yml + .codeclimate.yml + +extends: default +rules: + line-length: + max: 200 \ No newline at end of file