Skip to content

Commit

Permalink
Extend lint (#631)
Browse files Browse the repository at this point in the history
  • Loading branch information
scriptex committed Aug 10, 2021
1 parent c834bca commit 18d5eba
Show file tree
Hide file tree
Showing 4 changed files with 436 additions and 517 deletions.
6 changes: 3 additions & 3 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
},
"env": {
"es6": true,
"browser": true,
"node": true
"node": true,
"browser": true
},
"extends": ["eslint:recommended"]
"extends": ["eslint:recommended", "plugin:compat/recommended"]
}
7 changes: 6 additions & 1 deletion .stylelintrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
{
"extends": ["stylelint-config-recommended"]
"extends": [
"stylelint-config-recommended"
],
"plugins": [
"stylelint-no-unsupported-browser-features"
]
}
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webpack-mpa-next",
"version": "3.8.0",
"version": "3.9.0",
"description": "Multi page app setup with webpack",
"scripts": {
"build": "webpack --mode=production",
Expand Down Expand Up @@ -46,6 +46,7 @@
"cssnano": "5.0.7",
"eslint": "7.32.0",
"eslint-config-recommended": "4.1.0",
"eslint-plugin-compat": "3.12.0",
"file-loader": "6.2.0",
"mini-css-extract-plugin": "2.2.0",
"postcss": "8.3.6",
Expand All @@ -70,6 +71,7 @@
"spritesh": "1.2.1",
"stylelint": "13.13.1",
"stylelint-config-recommended": "5.0.0",
"stylelint-no-unsupported-browser-features": "5.0.1",
"svgo": "2.3.1",
"webpack": "5.49.0",
"webpack-cli": "4.7.2",
Expand Down
Loading

0 comments on commit 18d5eba

Please sign in to comment.