Skip to content
Snippets Groups Projects
Select Git revision
  • c53dbad03f32f2f1a547c7437af0745d3558219f
  • master default protected
  • hsh_v3.11
  • hsh_v3.10-r6
  • hsh_v3.10-r3
  • v3.9-r9
  • v3.10-r6
  • v3.9-r8
  • v3.10-r5
  • v3.9-r7
  • v3.10-r4
  • v3.9-r6
  • v3.10-r3
  • v3.9-r5
  • v3.10-r2
  • v3.9-r4
  • v3.10-r1
  • v3.9-r3
  • v3.9-r2
  • v3.9-r1
  • v3.8-r5
  • v3.8-r4
  • v3.8-r3
  • v3.8-r2
  • v3.8-r1
25 results

version.php

Blame
  • .yamllint 1.03 KiB
    # -*- 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 SLS files under directory `test/`, which are actually state files
    # 3. Any YAML files under directory `.kitchen/`, introduced during local testing
    # 4. Any YAML files using Jinja (result in `yamllint` syntax errors)
    ignore: |
      .cache/
      node_modules/
      test/**/states/**/*.sls
      .kitchen/
      mysql/supported_sections.yaml
    
    yaml-files:
      # Default settings
      - '*.yaml'
      - '*.yml'
      - .salt-lint
      - .yamllint
      # SaltStack Formulas additional settings
      - '*.example'
      - test/**/*.sls
    
    rules:
      empty-values:
        forbid-in-block-mappings: true
        forbid-in-flow-mappings: true
      line-length:
        # Increase from default of `80`
        # Based on https://github.com/PyCQA/flake8-bugbear#opinionated-warnings (`B950`)
        max: 88
      octal-values:
        forbid-implicit-octal: true
        forbid-explicit-octal: true