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/.gitattributes b/.gitattributes index 2b078c8e15..e07baacb4d 100755 --- a/.gitattributes +++ b/.gitattributes @@ -5,6 +5,7 @@ .scrutinizer.yml export-ignore .styleci.yml export-ignore .travis.yml export-ignore +.yamllint_config export-ignore .php_cs.dist export-ignore .php_cs export-ignore codesize.xml export-ignore diff --git a/.yamllint_config b/.yamllint_config new file mode 100644 index 0000000000..031fc3c45f --- /dev/null +++ b/.yamllint_config @@ -0,0 +1,11 @@ + +ignore: | + app/* + src/* + .travis.yml + .codeclimate.yml + +extends: default +rules: + line-length: + max: 500 \ No newline at end of file