File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 1+ # -*- coding: utf-8 -*-
2+ # vim: ft=yaml
3+ ---
4+ # General overrides used across formulas in the org
5+ Metrics/LineLength :
6+ # Increase from default of `80`
7+ # Based on https://github.com/PyCQA/flake8-bugbear#opinionated-warnings (`B950`)
8+ Max : 88
9+
10+ # Any offenses that should be fixed, e.g. collected via. `rubocop --auto-gen-config`
Original file line number Diff line number Diff line change 2828
2929 - language : node_js
3030 node_js : lts/*
31- env : ' Lint: salt-lint, yamllint & commitlint'
31+ env : ' Lint: salt-lint, yamllint, rubocop & commitlint'
3232 before_install : skip
3333 script :
3434 # Install and run `salt-lint`
3939 # Need at least `v1.17.0` for the `yaml-files` setting
4040 - pip install --user yamllint>=1.17.0
4141 - yamllint -s .
42+ # Install and run `rubocop`
43+ - gem install rubocop
44+ - rubocop -d
4245 # Install and run `commitlint`
4346 - npm install @commitlint/config-conventional -D
4447 - npm install @commitlint/travis-cli -D
You can’t perform that action at this time.
0 commit comments