mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-24 12:17:07 +00:00
chore: configure ESLint to lint .* configfiles too
This commit is contained in:
parent
3ed9e7d709
commit
9cda1d8f0f
3 changed files with 21 additions and 9 deletions
15
package.json
15
package.json
|
|
@ -4,13 +4,14 @@
|
|||
"description": "GitHub Action to run Renovate self-hosted.",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"lint": "eslint --ignore-path .prettierignore --ext .ts,.tsx,.js,.jsx,.json .",
|
||||
"lint:fix": "eslint --ignore-path .prettierignore --ext .ts,.tsx,.js,.jsx,.json --fix .",
|
||||
"lint-file": "eslint --ignore-path .prettierignore",
|
||||
"lint-file:fix": "eslint --ignore-path .prettierignore --fix",
|
||||
"format": "concurrently \"npm:format:default\"",
|
||||
"format:default": "prettier --write \"**/*.{js,jsx,vue,ts,css,less,scss,html,htm,json,md,markdown,yml,yaml}\"",
|
||||
"format-file:default": "prettier --write",
|
||||
"lint": "concurrently npm:lint-es",
|
||||
"lint:fix": "concurrently npm:lint-es:fix",
|
||||
"lint-es": "eslint --ext .ts,.tsx,.js,.jsx,.json .",
|
||||
"lint-es:file": "eslint --ext .ts,.tsx,.js,.jsx,.json",
|
||||
"lint-es:fix": "eslint --ext .ts,.tsx,.js,.jsx,.json --fix .",
|
||||
"lint-es:file:fix": "eslint --ext .ts,.tsx,.js,.jsx,.json --fix",
|
||||
"format": "prettier --write \"**/*.{js,jsx,vue,ts,css,less,scss,html,htm,json,md,markdown,yml,yaml}\"",
|
||||
"format:file": "prettier --write",
|
||||
"release:version": "next-standard-version",
|
||||
"release:changelog": "standard-version --dry-run --skip.commit=true --skip.tag=true",
|
||||
"release:commit": "git commit --allow-empty -m \"chore(release): trigger release process [ci release]\"",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue