add sass-lint support
This commit is contained in:
parent
84be4bf44c
commit
36cf700762
74
.sass-lint.yml
Normal file
74
.sass-lint.yml
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
#########################
|
||||||
|
## Sass Lint File
|
||||||
|
## See rules https://github.com/sasstools/sass-lint/tree/master/docs/rules
|
||||||
|
#########################
|
||||||
|
# Linter Options
|
||||||
|
options:
|
||||||
|
# Don't merge default rules
|
||||||
|
merge-default-rules: false
|
||||||
|
# File Options
|
||||||
|
files:
|
||||||
|
include: 'src/**/*.s+(a|c)ss'
|
||||||
|
ignore:
|
||||||
|
- 'node_modules/**/*.*'
|
||||||
|
# Rule Configuration
|
||||||
|
rules:
|
||||||
|
attribute-quotes:
|
||||||
|
- 2
|
||||||
|
-
|
||||||
|
include: true
|
||||||
|
extends-before-mixins: 2
|
||||||
|
extends-before-declarations: 2
|
||||||
|
placeholder-in-extend: 2
|
||||||
|
mixins-before-declarations:
|
||||||
|
- 2
|
||||||
|
-
|
||||||
|
exclude:
|
||||||
|
- breakpoint
|
||||||
|
- mq
|
||||||
|
nesting-depth:
|
||||||
|
- 1
|
||||||
|
-
|
||||||
|
max-depth: 2
|
||||||
|
no-warn: 1
|
||||||
|
no-debug: 1
|
||||||
|
no-ids: 2
|
||||||
|
no-duplicate-properties: 1
|
||||||
|
no-trailing-whitespace: 2
|
||||||
|
|
||||||
|
leading-zero:
|
||||||
|
- 2
|
||||||
|
-
|
||||||
|
include: false
|
||||||
|
no-vendor-prefixes:
|
||||||
|
- 2
|
||||||
|
-
|
||||||
|
ignore-non-standard: true
|
||||||
|
no-important: 2
|
||||||
|
hex-notation:
|
||||||
|
- 2
|
||||||
|
-
|
||||||
|
style: lowercase
|
||||||
|
indentation:
|
||||||
|
- 2
|
||||||
|
-
|
||||||
|
size: 'tab'
|
||||||
|
property-sort-order:
|
||||||
|
- 1
|
||||||
|
-
|
||||||
|
order: 'alphabetical'
|
||||||
|
ignore-custom-properties: true
|
||||||
|
property-units:
|
||||||
|
- 1
|
||||||
|
-
|
||||||
|
global: ['em', 'rem', '%']
|
||||||
|
quotes: 2
|
||||||
|
space-after-colon: 2
|
||||||
|
space-after-comma: 2
|
||||||
|
single-line-per-selector: 2
|
||||||
|
variable-for-property:
|
||||||
|
- 2
|
||||||
|
-
|
||||||
|
properties:
|
||||||
|
- color
|
||||||
|
zero-unit: 2
|
@ -53,6 +53,7 @@
|
|||||||
"npm-run-all": "^2.1.1",
|
"npm-run-all": "^2.1.1",
|
||||||
"onchange": "^2.4.0",
|
"onchange": "^2.4.0",
|
||||||
"postcss-cli": "^2.5.2",
|
"postcss-cli": "^2.5.2",
|
||||||
|
"sass-lint": "^1.8.2",
|
||||||
"slimerjs": "^0.906.2"
|
"slimerjs": "^0.906.2"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
@ -62,7 +63,8 @@
|
|||||||
"banner": "for m in dist/*.css; do echo '/*!\n * Milligram v1.1.0\n * http://milligram.github.io\n *\n * Copyright (c) 2016 CJ Patoilo\n * Licensed under the MIT license\n*/\n' | cat - $m > temp && mv temp $m; done",
|
"banner": "for m in dist/*.css; do echo '/*!\n * Milligram v1.1.0\n * http://milligram.github.io\n *\n * Copyright (c) 2016 CJ Patoilo\n * Licensed under the MIT license\n*/\n' | cat - $m > temp && mv temp $m; done",
|
||||||
"sass": "node-sass --output-style expanded src/milligram.sass dist/milligram.css && node-sass --output-style compressed src/milligram.sass dist/milligram.min.css",
|
"sass": "node-sass --output-style expanded src/milligram.sass dist/milligram.css && node-sass --output-style compressed src/milligram.sass dist/milligram.min.css",
|
||||||
"autoprefixer": "postcss -u autoprefixer --no-map.inline --autoprefixer.browsers 'last 1 versions' -r dist/*.css",
|
"autoprefixer": "postcss -u autoprefixer --no-map.inline --autoprefixer.browsers 'last 1 versions' -r dist/*.css",
|
||||||
"build": "npm-run-all sass autoprefixer banner",
|
"build": "npm-run-all lint sass autoprefixer banner",
|
||||||
|
"lint": "sass-lint -c .sass-lint.yml 'src/*.sass' --verbose --no-exit",
|
||||||
"watch": "onchange src -- npm run build",
|
"watch": "onchange src -- npm run build",
|
||||||
"serve": "browser-sync start -s test --ss dist -f dist",
|
"serve": "browser-sync start -s test --ss dist -f dist",
|
||||||
"start": "npm-run-all -p watch serve",
|
"start": "npm-run-all -p watch serve",
|
||||||
|
Loading…
Reference in New Issue
Block a user