Skip to content

v1.0.0 - supports new repolinter configuration

Latest
Compare
Choose a tag to compare
@JeroenKnoops JeroenKnoops released this 10 Nov 21:36
· 2 commits to master since this release
2d7dc7e

Supports new repolinter configuration.

---
"$schema": https://raw.githubusercontent.com/prototypicalpro/repolinter/master/rulesets/schema.json
version: 2
axioms: {}
rules:
  license-file-exists:
    level: error
    rule:
      type: file-existence
      options:
        globsAny:
        - LICENSE*
        - COPYING*
        nocase: true
  readme-file-exists:
    level: error
    rule:
      type: file-existence
      options:
        globsAny:
        - README*
        nocase: true
  binaries-not-present:
    level: error
    rule:
      type: file-not-exists
      options:
        globsAll:
          - "**/*.exe"
          - "**/*.dll"
          - "!node_modules/**"