Remove overzealous linter fixes

pull/17039/head
Germain Souquet 2021-04-22 12:22:10 +01:00
parent 417835fcca
commit 87806b8a67
1 changed files with 6 additions and 9 deletions

View File

@ -183,8 +183,8 @@ module.exports = (env, argv) => {
loader: 'postcss-loader', loader: 'postcss-loader',
ident: 'postcss', ident: 'postcss',
options: { options: {
"sourceMap": true, sourceMap: true,
"plugins": () => [ plugins: () => [
// Note that we use significantly fewer plugins on the plain // Note that we use significantly fewer plugins on the plain
// CSS parser. If we start to parse plain CSS, we end with all // CSS parser. If we start to parse plain CSS, we end with all
// kinds of nasty problems (like stylesheets not loading). // kinds of nasty problems (like stylesheets not loading).
@ -211,7 +211,7 @@ module.exports = (env, argv) => {
// up with broken CSS. // up with broken CSS.
require('postcss-preset-env')({stage: 3, browsers: 'last 2 versions'}), require('postcss-preset-env')({stage: 3, browsers: 'last 2 versions'}),
], ],
"parser": "postcss-scss", parser: "postcss-scss",
"local-plugins": true, "local-plugins": true,
}, },
}, },
@ -232,8 +232,8 @@ module.exports = (env, argv) => {
loader: 'postcss-loader', loader: 'postcss-loader',
ident: 'postcss', ident: 'postcss',
options: { options: {
"sourceMap": true, sourceMap: true,
"plugins": () => [ plugins: () => [
// Note that we use slightly different plugins for SCSS. // Note that we use slightly different plugins for SCSS.
require('postcss-import')(), require('postcss-import')(),
@ -250,7 +250,7 @@ module.exports = (env, argv) => {
// up with broken CSS. // up with broken CSS.
require('postcss-preset-env')({stage: 3, browsers: 'last 2 versions'}), require('postcss-preset-env')({stage: 3, browsers: 'last 2 versions'}),
], ],
"parser": "postcss-scss", parser: "postcss-scss",
"local-plugins": true, "local-plugins": true,
}, },
}, },
@ -423,9 +423,6 @@ module.exports = (env, argv) => {
hot: false, hot: false,
inline: false, inline: false,
}, },
stats: {
warnings: false,
},
}; };
}; };