Skip to content

Commit

Permalink
Merge pull request #183 from kieler/mka/yarn-lint-and-fix
Browse files Browse the repository at this point in the history
add lint-fix command to automatically fix linter problems
  • Loading branch information
NiklasRentzCAU authored Jul 23, 2024
2 parents d92c689 + 5e1b43d commit beca451
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"scripts": {
"clean": "lerna run clean --parallel",
"lint": "lerna run lint --parallel",
"lint-fix": "lerna run lint-fix --parallel",
"prebuild": "yarn clean",
"build": "lerna run build",
"watch": "lerna run watch --parallel",
Expand Down
1 change: 1 addition & 0 deletions packages/klighd-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"scripts": {
"clean": "rimraf lib",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"build": "tsc",
"watch": "tsc -w",
"publish:next": "yarn publish --new-version \"$(semver $npm_package_version -i minor)-next.$(git rev-parse --short HEAD)\" --tag next --no-git-tag-version"
Expand Down
1 change: 1 addition & 0 deletions packages/klighd-interactive/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"scripts": {
"clean": "rimraf lib",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"build": "tsc",
"watch": "tsc -w",
"publish:next": "yarn publish --new-version \"$(semver $npm_package_version -i minor)-next.$(git rev-parse --short HEAD)\" --tag next --no-git-tag-version"
Expand Down

0 comments on commit beca451

Please sign in to comment.