src/ ├── e2e/ | └── ... ├── src/ | ├── app/ | | ├── core/ | | ├── modules/ | | | ├── module/ | | | | ├── components/ | | | | | └── component-name/
View contrast-function.scss
// ---- | |
// libsass (v3.5.4) | |
// ---- | |
$contrasts: 'base', 'contrast-white', 'contrast-black'; | |
$colors: ( | |
'primary': ( | |
'base': red, | |
'contrast-white': white, |
View .eslintrc
{ | |
// http://eslint.org/docs/rules/ | |
"ecmaFeatures": { | |
"binaryLiterals": false, // enable binary literals | |
"blockBindings": false, // enable let and const (aka block bindings) | |
"defaultParams": false, // enable default function parameters | |
"forOf": false, // enable for-of loops | |
"generators": false, // enable generators | |
"objectLiteralComputedProperties": false, // enable computed object literal property names |
View .eslintrc.yaml
# http:#eslint.org/docs/rules/ | |
ecmaFeatures: | |
binaryLiterals: false # enable binary literals | |
blockBindings: false # enable let and const (aka block bindings) | |
defaultParams: false # enable default function parameters | |
forOf: false # enable for-of loops | |
generators: false # enable generators | |
objectLiteralComputedProperties: false # enable computed object literal property names | |
objectLiteralDuplicateProperties: false # enable duplicate object literal properties in strict mode | |
objectLiteralShorthandMethods: false # enable object literal shorthand methods |