BigW Consortium Gitlab

.haml-lint.yml 1.76 KB
Newer Older
Rémy Coutable committed
1 2 3 4 5
# Whether to ignore frontmatter at the beginning of HAML documents for
# frameworks such as Jekyll/Middleman
skip_frontmatter: false
exclude:
  - 'vendor/**/*'
6
  - 'spec/**/*'
Rémy Coutable committed
7 8 9

linters:
  AltText:
10
    enabled: true
Rémy Coutable committed
11 12

  ClassAttributeWithStaticValue:
13
    enabled: true
Rémy Coutable committed
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

  ClassesBeforeIds:
    enabled: false

  ConsecutiveComments:
    enabled: false

  ConsecutiveSilentScripts:
    enabled: false
    max_consecutive: 2

  EmptyObjectReference:
    enabled: true

  EmptyScript:
    enabled: true

  FinalNewline:
32
    enabled: true
Rémy Coutable committed
33 34 35
    present: true

  HtmlAttributes:
36
    enabled: true
Rémy Coutable committed
37 38

  ImplicitDiv:
39
    enabled: true
Rémy Coutable committed
40 41 42 43 44 45 46 47 48

  LeadingCommentSpace:
    enabled: false

  LineLength:
    enabled: false
    max: 80

  MultilinePipe:
49
    enabled: true
Rémy Coutable committed
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79

  MultilineScript:
    enabled: true

  ObjectReferenceAttributes:
    enabled: true

  RuboCop:
    enabled: false
    # These cops are incredibly noisy when it comes to HAML templates, so we
    # ignore them.
    ignored_cops:
      - Lint/BlockAlignment
      - Lint/EndAlignment
      - Lint/Void
      - Metrics/LineLength
      - Style/AlignParameters
      - Style/BlockNesting
      - Style/ElseAlignment
      - Style/FileName
      - Style/FinalNewline
      - Style/FrozenStringLiteralComment
      - Style/IfUnlessModifier
      - Style/IndentationWidth
      - Style/Next
      - Style/TrailingBlankLines
      - Style/TrailingWhitespace
      - Style/WhileUntilModifier

  RubyComments:
80
    enabled: true
Rémy Coutable committed
81 82

  SpaceBeforeScript:
83
    enabled: true
Rémy Coutable committed
84 85

  SpaceInsideHashAttributes:
86
    enabled: true
Rémy Coutable committed
87 88 89 90 91 92 93 94 95 96
    style: space

  Indentation:
    enabled: true
    character: space # or tab

  TagName:
    enabled: true

  TrailingWhitespace:
97
    enabled: true
Rémy Coutable committed
98 99

  UnnecessaryInterpolation:
100
    enabled: true
Rémy Coutable committed
101 102

  UnnecessaryStringOutput:
103
    enabled: true