Skip to content

Commit

Permalink
bug fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
smarteist committed Nov 10, 2021
1 parent d63a9ee commit b0cd527
Show file tree
Hide file tree
Showing 8 changed files with 259 additions and 249 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module.exports = {
rules: {
'no-undef': 'off',
'no-console': 'warn',
indent: ['warn', 2],
"index": "off"
},
// do not need if you using rule: 'no-undef':'off'
// globals: {
Expand Down
13 changes: 8 additions & 5 deletions .stylelintrc.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
module.exports = {
ignoreFiles: [
"src/assets/styles/vendors/**/*.scss"
],
// https://github.com/stylelint/stylelint-config-recommended
extends: "stylelint-config-recommended",
rules: {
"at-rule-no-unknown": null,
"comment-no-empty": true,
"no-extra-semicolons": true
extends: "stylelint-config-recommended-scss",
syntax: "scss",
"rules": {
'scss/comment-no-empty': null,
'scss/no-global-function-names': null,
}
}
12 changes: 7 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,27 +32,29 @@
"@babel/core": "^7.14.3",
"@babel/eslint-parser": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"autoprefixer": "^10.4.0",
"babel-loader": "^8.2.2",
"browser-sync": "^2.26.14",
"browser-sync-webpack-plugin": "^2.3.0",
"css-loader": "^5.2.7",
"css-loader": "^6.5.1",
"eslint": "^7.26.0",
"eslint-loader": "^4.0.2",
"file-loader": "^6.2.0",
"glob": "^7.1.7",
"html-loader": "^2.1.2",
"html-loader": "^3.0.1",
"html-srcsets-loader": "^0.5.1",
"html-webpack-plugin": "^5.3.1",
"image-webpack-loader": "^7.0.1",
"image-webpack-loader": "^8.0.1",
"mini-css-extract-plugin": "^2.2.0",
"node-sass": "^6.0.0",
"postcss": "^8.3.0",
"postcss-loader": "^6.1.1",
"resolve-url-loader": "^4.0.0",
"sass": "^1.43.4",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"stylelint": "^13.13.1",
"stylelint-config-recommended": "^5.0.0",
"stylelint": "^14.0.1",
"stylelint-config-recommended-scss": "^5.0.1",
"stylelint-webpack-plugin": "^3.0.1",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0"
Expand Down
Loading

0 comments on commit b0cd527

Please sign in to comment.