mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-23 03:20:19 +01:00
19 lines
603 B
YAML
19 lines
603 B
YAML
|
# SPDX-License-Identifier: MIT
|
||
|
---
|
||
|
extends: .yamllint_defaults.yml
|
||
|
# possible customizations over the base yamllint config
|
||
|
# skip the yaml files in the /tests/ directory
|
||
|
# NOTE: If you want to customize `ignore` you'll have to
|
||
|
# copy in all of the config from .yamllint.yml, then
|
||
|
# add your own - so if you want to just add /tests/ to
|
||
|
# be ignored, you'll have to add the ignores from the base
|
||
|
ignore: |
|
||
|
/.tox/
|
||
|
/.github/
|
||
|
# /tests/
|
||
|
# skip checking line length
|
||
|
# NOTE: the above does not apply to `rules` - you do not
|
||
|
# have to copy all of the rules from the base config
|
||
|
rules:
|
||
|
line-length: disable
|