######################### ## Sample Sass Lint File ######################### # Linter Options options: # Don't merge default rules merge-default-rules: false # Set the formatter to 'html' formatter: compact # Output file instead of logging results #output-file: 'linters/sass-lint.html' # Raise an error if more than 50 warnings are generated max-warnings: 50 # File Options files: include: '**/*.s+(a|c)ss' ignore: - 'node_modules/**/*.*' # Rule Configuration rules: extends-before-mixins: 2 extends-before-declarations: 2 mixins-before-declarations: - 2 - exclude: - breakpoint - mq - media no-debug: 1 no-ids: 2 no-important: 2 hex-notation: - 2 - style: uppercase indentation: - 4 - size: 4 property-sort-order: - 1 - order: - display - margin ignore-custom-properties: true variable-for-property: - 1 - properties: - color - font-family zero-unit: - 2 - include: false variable-name-format: - 1 - convention: 'hyphenatedlowercase' url-quotes: - 2 trailing-semicolon: - 2 space-between-parens: - 2 space-before-colon: - 2 space-before-brace: - 2 space-before-bang: - 2 single-line-per-selector: - 2