Skip to content
Snippets Groups Projects
Select Git revision
  • bebd5c3328422aacf65996776e282d032347c5c9
  • develop default protected
  • weblate
  • renovate/vitejs-plugin-vue-6.x
  • renovate/major-font-awesome
  • renovate/vitest-monorepo
  • renovate/sass-1.x
  • renovate/stylelint-16.x
  • renovate/vue-monorepo
  • renovate/eslint-monorepo
  • renovate/sinon-chai-4.x
  • renovate/chai-5.x
  • suggest-remove
  • renovate/node-22.x
  • shigusegubu
  • from/develop/tusooa/sw-cache-assets
  • settings-sync
  • master protected
  • release/2.8.x
  • real-vote-counts
  • audio-viz
  • 2.8.0
  • 2.7.1
  • 2.7.0
  • 2.6.1
  • 2.6.0
  • 2.5.0
  • 2.4.2
  • 2.4.0
  • 2.3.0
  • 2.2.3
  • 2.2.2
  • 2.2.1
  • 2.2.0
  • 2.1.2
  • 2.1.1
  • 2.1.0
  • 2.0.5
  • 2.0.3
  • 2.0.2
  • 0.9.999
41 results

.gitignore

Blame
  • .scss-lint.yml 7.23 KiB
    # Linter Documentation:
    # https://github.com/brigade/scss-lint/blob/v0.42.2/lib/scss_lint/linter/README.md
    
    scss_files: 'app/javascript/styles/**/*.scss'
    
    exclude:
      - app/javascript/styles/reset.scss
    
    linters:
      # Reports when you use improper spacing around ! (the "bang") in !default,
      # !global, !important, and !optional flags.
      BangFormat:
        enabled: false
    
      # Whether or not to prefer `border: 0` over `border: none`.
      BorderZero:
        enabled: false
    
      # Reports when you define a rule set using a selector with chained classes
      # (a.k.a. adjoining classes).
      ChainedClasses:
        enabled: false
    
      # Prefer hexadecimal color codes over color keywords.
      # (e.g. `color: green` is a color keyword)
      ColorKeyword:
        enabled: false
    
      # Prefer color literals (keywords or hexadecimal codes) to be used only in
      # variable declarations. They should be referred to via variables everywhere
      # else.
      ColorVariable:
        enabled: true
    
      # Which form of comments to prefer in CSS.
      Comment:
        enabled: false
    
      # Reports @debug statements (which you probably left behind accidentally).
      DebugStatement:
        enabled: false
    
      # Rule sets should be ordered as follows:
      # - @extend declarations
      # - @include declarations without inner @content
      # - properties, @include declarations with inner @content
      # - nested rule sets.
      DeclarationOrder:
        enabled: false
    
      # `scss-lint:disable` control comments should be preceded by a comment
      # explaining why these linters are being disabled for this file.
      # See https://github.com/brigade/scss-lint#disabling-linters-via-source for
      # more information.
      DisableLinterReason:
        enabled: true
    
      # Reports when you define the same property twice in a single rule set.
      DuplicateProperty:
        enabled: false
    
      # Separate rule, function, and mixin declarations with empty lines.
      EmptyLineBetweenBlocks:
        enabled: true
    
      # Reports when you have an empty rule set.
      EmptyRule:
        enabled: true
    
      # Reports when you have an @extend directive.