24 lines
760 B
YAML
24 lines
760 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: |
|
|
# /tests/
|
|
# /.tox/
|
|
# 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
|
|
rules:
|
|
truthy: disable
|
|
line-length:
|
|
ignore: |
|
|
/tests/tests_wireless_plugin_installation_nm.yml
|
|
/tests/tests_team_plugin_installation_nm.yml
|