You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
418 B
17 lines
418 B
4 years ago
|
# -*- 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
|
||
|
ignore: |
|
||
|
node_modules/
|
||
|
|
||
|
rules:
|
||
|
line-length:
|
||
|
# Increase from default of `80`
|
||
|
# Based on https://github.com/PyCQA/flake8-bugbear#opinionated-warnings (`B950`)
|
||
|
max: 88
|