Skip to content

Commit

Permalink
run lint and stylelint on package aswell.
Browse files Browse the repository at this point in the history
  • Loading branch information
max-nextcloud committed Apr 6, 2022
1 parent 75b599e commit 4c360b1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
"dev": "NODE_ENV=development webpack --config webpack.js",
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.js",
"build": "NODE_ENV=production webpack --progress --config webpack.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",
"lint": "eslint --ext .js,.vue src package",
"lint:fix": "eslint --ext .js,.vue src package --fix",
"stylelint": "stylelint {src,package}/**/*.{vue,scss,css}",
"stylelint:fix": "stylelint {src,package}/**/*.{vue,scss,css} --fix",
"test": "NODE_ENV=test jest",
"test:coverage": "NODE_ENV=test jest --coverage"
},
Expand Down

0 comments on commit 4c360b1

Please sign in to comment.