Skip to content
Snippets Groups Projects
Select Git revision
  • b7c807935040d84a728849865ce6a008cb4b94e9
  • develop default protected
  • renovate/sass-1.x
  • renovate/babel-monorepo
  • renovate/babel-eslint-replacement
  • renovate/autoprefixer-10.x
  • renovate/babel-loader-8.x
  • remove-workers
  • renovate/vue-test-utils-2.x
  • renovate/element-ui-2.x
  • renovate/vue-monorepo
  • release/2.6
  • renovate/vue-test-utils-1.x
  • renovate/vuex-3.x
  • stable protected
  • release/2.5.0
  • coverage-stable
  • feature/dynamic-settings-rendering
  • feature/render-settings-dynamically
  • feature/fetchs-list-of-tabs
  • feature/post-pagination
  • 2.5.0
  • 2.4.0
  • v2.2.0
  • v2.1.0
  • v2.0.2
  • 1.2.0
27 results

package.json

Blame
  • This project manages its dependencies using npm. Learn more
    .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.