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

github.com/nextcloud/richdocuments.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2019-07-05 14:00:48 +0300
committerJulius Härtl <jus@bitgrid.net>2019-07-16 08:39:43 +0300
commit9977186142ca01630fbdc92f09c7d9775adb9e97 (patch)
treef475200fc4a0d20cff7c48aa7dbc94f772f5fa77 /package.json
parent8f0bde31bc62015de2bd4e671ecc87b4a7adbf7f (diff)
Add stylelint
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'package.json')
-rw-r--r--package.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/package.json b/package.json
index 3c1e6027..fb606069 100644
--- a/package.json
+++ b/package.json
@@ -17,8 +17,8 @@
"build": "NODE_ENV=production webpack --progress --hide-modules --config webpack.prod.js",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
- "stylelint": "stylelint src/**/*.vue src/**/*.scss src/**/*.css",
- "stylelint:fix": "stylelint src/**/*.vue src/**/*.scss src/**/*.css --fix",
+ "stylelint": "stylelint css/*",
+ "stylelint:fix": "stylelint css/* --fix",
"test": "NODE_ENV=test jest --passWithNoTests",
"test:coverage": "NODE_ENV=test jest --coverage"
},