Skip to content

Commit 0ad0ddb

Browse files
committed
Deprecates sass-lint in favor of stylelint. Fixes SASS sample files according the updated linting rules
1 parent 93e208a commit 0ad0ddb

File tree

12 files changed

+1487
-2155
lines changed

12 files changed

+1487
-2155
lines changed

.sasslintrc

Lines changed: 0 additions & 108 deletions
This file was deleted.

.stylelintrc.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"extends": [
3+
"stylelint-config-standard-scss"
4+
],
5+
"rules": {
6+
"scss/dollar-variable-pattern": null
7+
}
8+
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
- **Optimize Assets Loading** - inline and embed **images** / **fonts** files having file size below a _configurable_ threshold value.
7777
- **Images Optimisation** - optimize `jpeg`, `jpg`, `png`, `gif`, `svg` filesize and loading type via [`imagemin`](https://github.com/imagemin/imagemin). Plugin and Loader for webpack to optimize (_compress_) all images using `imagemin`. Do not worry about size of images, now they are always optimized/compressed.
7878
- Support for **source code syntax style and formatting linters** that analyze source code to flag any programming errors, bugs, stylistic errors or suspicious constructs:
79-
- **SASS/PostCSS syntax cheker** - you can change or add additional rules in `.sasslintrc` file. Configuration options can be found on [`sass-lint`](https://github.com/sasstools/sass-lint/blob/master/lib/config/sass-lint.yml) documentation.
79+
- **SASS/PostCSS syntax cheker** - you can change or add additional rules in `.sasslintrc` file. Configuration options can be found on [`stylelint`](https://stylelint.io) documentation.
8080
- **JavaScript syntax checker** - following the `airbnb` style, you can review and configure the rules in `.eslintrc` file. Configuration options can be found on [`eslint`](https://eslint.org/docs/user-guide/configuring) documentation.
8181
- Latest [Webpack 5](https://github.com/webpack/webpack) - _JavaScript_ module bundler.
8282
- Latest [SASS/PostCSS](https://github.com/sass/sass) compiler based on Dart `sass`.

0 commit comments

Comments
 (0)