diff --git a/.flintci.yml b/.flintci.yml index 8405011..857b727 100644 --- a/.flintci.yml +++ b/.flintci.yml @@ -1,3 +1,6 @@ services: - phpcsfixer: true - yamllint: true + phpcsfixer: + config_path: .php_cs + yamllint: + version: latest + config_path: .yamllint_config diff --git a/.yamllint_config b/.yamllint_config new file mode 100644 index 0000000..2f78f7a --- /dev/null +++ b/.yamllint_config @@ -0,0 +1,8 @@ +ignore: | + assets/* + .travis.yml + +extends: default +rules: + line-length: + max: 500 \ No newline at end of file