Skip to content

Commit 979ae9c

Browse files
committed
prettier: update config
1 parent 3b8366f commit 979ae9c

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.prettierrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"eslintIntegration": true,
3-
"semi": false,
4-
"singleQuote": true
3+
"singleQuote": true,
4+
"trailingComma": "es5"
55
}

src/index.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer')
1+
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
22

33
function rewireWebpackBundleAnalyzer(config, env, options = {}) {
44
config.plugins = (config.plugins || []).concat([
5-
new BundleAnalyzerPlugin(options)
6-
])
5+
new BundleAnalyzerPlugin(options),
6+
]);
77

8-
return config
8+
return config;
99
}
1010

11-
module.exports = rewireWebpackBundleAnalyzer
11+
module.exports = rewireWebpackBundleAnalyzer;

0 commit comments

Comments
 (0)