Skip to content

Commit b7973a6

Browse files
committed
Migrated to SCSS
1 parent d863d32 commit b7973a6

13 files changed

+1321
-131
lines changed

.stylelintignore

-2
This file was deleted.

.stylelintrc

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"extends": "stylelint-config-standard",
3+
"rules": {
4+
"color-hex-case": "upper",
5+
"max-empty-lines": 2
6+
},
7+
"ignoreFiles": [
8+
"dist/**",
9+
"node_modules/**"
10+
]
11+
}

.vscode/extensions.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"recommendations": [
3+
"EditorConfig.EditorConfig",
4+
"streetsidesoftware.code-spell-checker",
5+
"shinnn.stylelint",
6+
"mrmlnc.vscode-scss"
7+
]
8+
}

.vscode/settings.json

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"css.validate": false,
3+
"less.validate": false,
4+
"scss.validate": false,
5+
"cSpell.words": [
6+
"cleancss",
7+
"postbuild",
8+
"prebuild",
9+
"stylelint"
10+
],
11+
"files.associations": {
12+
"*.stylelintrc": "json"
13+
}
14+
}

0 commit comments

Comments
 (0)