summaryrefslogtreecommitdiffstats
path: root/webpack.js
diff options
context:
space:
mode:
authorDevlin Junker <devlin.junker@gmail.com>2022-06-30 21:28:56 -0700
committerBenjamin Brahmer <info@b-brahmer.de>2022-10-03 12:58:13 +0200
commit42e9b47159cb95a9152e7ea66fe26abce5beeb9e (patch)
tree1083dd723d41b4f215ce91b91c8766cdb4afbacf /webpack.js
parentf1668df03fa137ff809f26b6dd5b52707d6009f1 (diff)
change linting rule from spaces to tabs to match typical vue linting
also clean up all lint warnings in js+vue files Signed-off-by: Devlin Junker <devlin.junker@gmail.com>
Diffstat (limited to 'webpack.js')
-rw-r--r--webpack.js26
1 files changed, 13 insertions, 13 deletions
diff --git a/webpack.js b/webpack.js
index 73904ad79..4bdb0d02d 100644
--- a/webpack.js
+++ b/webpack.js
@@ -2,19 +2,19 @@ const webpackConfig = require('@nextcloud/webpack-vue-config')
// Add TS Loader for processing typescript in vue templates
webpackConfig.module.rules.push({
- test: /.ts$/,
- exclude: [/node_modules/],
- use: [
- {
- loader: 'ts-loader',
- options: {
- transpileOnly: true,
- appendTsSuffixTo: [
- '\\.vue$',
- ],
- },
- },
- ],
+ test: /.ts$/,
+ exclude: [/node_modules/],
+ use: [
+ {
+ loader: 'ts-loader',
+ options: {
+ transpileOnly: true,
+ appendTsSuffixTo: [
+ '\\.vue$',
+ ],
+ },
+ },
+ ],
})
module.exports = webpackConfig