Skip to content

Commit

Permalink
fixup! Fix(design-tokens): Fix eslint configuration #DS-1503
Browse files Browse the repository at this point in the history
  • Loading branch information
curdaj committed Oct 8, 2024
1 parent 615dbb8 commit 2ab4db9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/design-tokens/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@
"build:js": "vite build",
"build:scss": "shx mkdir -p scss && shx cp -r src/scss/generated/* src/scss/@tokens.scss scss/",
"clean": "rimraf esm cjs umd scss types",
"lint": "eslint ./src/**/*.ts && stylelint ./src/**/*.scss",
"lint": "npm-run-all --serial lint:scripts lint:styles",
"lint:scripts": "eslint ./src/**/*.ts",
"lint:styles": "stylelint ./src/**/*.scss",
"test": "yarn lint",
"types": "tsc"
},
Expand Down

0 comments on commit 2ab4db9

Please sign in to comment.