feat(yamllint): include for this repo and apply rules throughout
* Semi-automated using `ssf-formula` (v0.5.0)
* Fix errors shown below:
```bash
php-formula$ $(grep "\- yamllint" .travis.yml | sed -e "s:^\s\+-\s\(.*\):\1:")
./test/integration/default/inspec.yml
1:1 warning missing document start "---" (document-start)
pillar.example
3:1 warning missing document start "---" (document-start)
7:22 warning truthy value should be one of [false, true] (truthy)
8:22 warning truthy value should be one of [false, true] (truthy)
10:22 warning truthy value should be one of [false, true] (truthy)
16:17 warning truthy value should be one of [false, true] (truthy)
41:12 error wrong indentation: expected 10 but found 11 (indentation)
46:27 warning truthy value should be one of [false, true] (truthy)
70:18 warning truthy value should be one of [false, true] (truthy)
74:19 warning truthy value should be one of [false, true] (truthy)
83:22 warning truthy value should be one of [false, true] (truthy)
97:22 warning truthy value should be one of [false, true] (truthy)
107:89 error line too long (93 > 88 characters) (line-length)
118:20 warning truthy value should be one of [false, true] (truthy)
126:14 error wrong indentation: expected 12 but found 13 (indentation)
126:23 warning truthy value should be one of [false, true] (truthy)
151:20 warning truthy value should be one of [false, true] (truthy)
177:19 warning truthy value should be one of [false, true] (truthy)
197:25 warning truthy value should be one of [false, true] (truthy)
```
2019-08-06 16:51:42 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vim: ft=yaml
|
|
|
|
---
|
2019-07-15 00:57:23 +02:00
|
|
|
name: default
|
|
|
|
title: php formula
|
|
|
|
maintainer: SaltStack Formulas
|
2019-06-26 01:34:51 +02:00
|
|
|
license: Apache-2.0
|
|
|
|
summary: Verify that the php formula is setup and configured correctly
|
2020-12-22 15:30:35 +01:00
|
|
|
depends:
|
|
|
|
- name: share
|
|
|
|
path: test/integration/share
|
2019-06-26 01:34:51 +02:00
|
|
|
supports:
|
2019-06-27 02:57:50 +02:00
|
|
|
- platform-name: debian
|
|
|
|
- platform-name: ubuntu
|
|
|
|
- platform-name: centos
|
|
|
|
- platform-name: fedora
|
|
|
|
- platform-name: opensuse
|
|
|
|
- platform-name: suse
|
2019-07-15 00:57:23 +02:00
|
|
|
- platform-name: freebsd
|
|
|
|
- platform-name: amazon
|
2021-02-14 14:08:10 +01:00
|
|
|
- platform-name: oracle
|
2019-10-01 17:20:45 +02:00
|
|
|
- platform-name: arch
|
2021-02-14 14:08:10 +01:00
|
|
|
- platform-name: gentoo
|
|
|
|
- platform: windows
|