Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-04-21 13:17:07 +0300
committerJoas Schilling <coding@schilljs.com>2020-05-08 19:05:31 +0300
commit54d1174b7564d114e9c834da19ed3535422bb73c (patch)
tree3c067f533dcee174c26a886317dd30f32648f411 /webpack.common.js
parentae516699a26963bde8061445cc68959a94f648a1 (diff)
Run stylelint with the version from package.json
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'webpack.common.js')
-rw-r--r--webpack.common.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/webpack.common.js b/webpack.common.js
index 555d0eb8b..83c98e9a6 100644
--- a/webpack.common.js
+++ b/webpack.common.js
@@ -76,7 +76,9 @@ module.exports = {
},
plugins: [
new VueLoaderPlugin(),
- new StyleLintPlugin(),
+ new StyleLintPlugin({
+ files: ['**/*.vue'],
+ }),
],
resolve: {
extensions: ['*', '.js', '.vue'],