Skip to content

Instantly share code, notes, and snippets.

{
"rules": {
"color-no-invalid-hex": true,
"font-family-no-duplicate-names": true,
"font-family-no-missing-generic-family-keyword": true,
"function-calc-no-unspaced-operator": true,
"function-linear-gradient-no-nonstandard-direction": true,
"string-no-newline": true,
"unit-no-unknown": true,
"property-no-unknown": true,
@TokaLazy
TokaLazy / .scss-lint.yml
Last active April 3, 2018 12:40
Configurable tool for writing clean and consistent SCSS
# https://github.com/brigade/scss-lint
# https://github.com/brigade/scss-lint/blob/master/lib/scss_lint/linter/README.md
scss_files: "**/*.scss"
exclude: ["libs/**/*.scss", "node_modules/**/*.scss", "bower_components/**/*.scss"]
plugin_directories: [".scss-linters"]
# List of gem names to load custom linters from (make sure they are already installed)
plugin_gems: []
# See https://docs.npmjs.com/all#save-prefix
save-prefix = ~
# See https://docs.npmjs.com/all#save-exact
save-exact = false
{
"workbench.iconTheme": "material-icon-theme",
"editor.minimap.enabled": false,
"window.zoomLevel": 0,
"editor.formatOnPaste": true,
"atomKeymap.promptV3Features": true,
"window.openFoldersInNewWindow": "on",
"csscomb.formatOnSave": true,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
root = true
[*]
charset = utf-8
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
end_of_line = lf
{
"exclude": [
".git/**",
"node_modules/**",
"bower_components/**"
],
"always-semicolon": true,
"color-case": "lower",
"block-indent": "\t",
"color-shorthand": true,