Skip to content
This repository was archived by the owner on May 28, 2026. It is now read-only.

Commit 853d531

Browse files
eslint: enforce semi-style
Remove `semi-style` rule from `.eslintrc.json` and fix errors. Bug: T421660
1 parent b66c0bf commit 853d531

2 files changed

Lines changed: 1 addition & 19 deletions

File tree

.eslintrc.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
"rules": {
1515
"no-jquery/no-global-selector": "warn",
1616
"no-new": "warn",
17-
"semi-style": "warn",
1817
"yml/no-empty-document": "warn",
1918
"yml/no-empty-mapping-value": "warn"
2019
}

webpack.config.js

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -55,23 +55,6 @@ Encore
5555
.configureBabelPresetEnv( ( config ) => {
5656
config.useBuiltIns = 'usage';
5757
config.corejs = 3;
58-
} )
59-
60-
// enables Sass/SCSS support
61-
// .enableSassLoader()
62-
63-
// uncomment if you use TypeScript
64-
// .enableTypeScriptLoader()
65-
66-
// uncomment if you use React
67-
// .enableReactPreset()
68-
69-
// uncomment to get integrity="..." attributes on your script & link tags
70-
// requires WebpackEncoreBundle 1.4 or higher
71-
// .enableIntegrityHashes(Encore.isProduction())
72-
73-
// uncomment if you're having problems with a jQuery plugin
74-
// .autoProvidejQuery()
75-
;
58+
} );
7659

7760
module.exports = Encore.getWebpackConfig();

0 commit comments

Comments
 (0)