mirror of
https://github.com/saltstack-formulas/mysql-formula.git
synced 2025-04-15 17:20:25 +00:00
19 lines
519 B
Text
19 lines
519 B
Text
![]() |
# -*- coding: utf-8 -*-
|
||
|
# vim: ft=yaml
|
||
|
---
|
||
|
# Extend the `default` configuration provided by `yamllint`
|
||
|
extends: default
|
||
|
|
||
|
# Files to ignore completely
|
||
|
# 1. All YAML files under directory `node_modules/`, introduced during the Travis run
|
||
|
# 2. Any YAML files using Jinja (result in `yamllint` syntax errors)
|
||
|
ignore: |
|
||
|
node_modules/
|
||
|
mysql/supported_sections.yaml
|
||
|
|
||
|
rules:
|
||
|
line-length:
|
||
|
# Increase from default of `80`
|
||
|
# Based on https://github.com/PyCQA/flake8-bugbear#opinionated-warnings (`B950`)
|
||
|
max: 88
|