Skip to content

Commit

Permalink
chore: rename eslint to lint (#437)
Browse files Browse the repository at this point in the history
Related to #430
  • Loading branch information
simPod authored Jun 3, 2023
1 parent 0d7c6f3 commit 68a2215
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
run: yarn install --immutable

- name: Eslint
run: yarn run eslint:check
run: yarn run lint

Prettier:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"watch": "grafana-toolkit plugin:dev --watch",
"sign": "grafana-toolkit plugin:sign",
"build-sign-release": "yarn run build && yarn run sign && yarn run package",
"eslint:check": "eslint src spec --ext .tsx,.ts",
"eslint:fix": "yarn run eslint:check --fix",
"lint": "eslint --cache --ignore-path ./.gitignore --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "yarn run lint --fix",
"package": "cp -r dist/ simpod-json-datasource && zip simpod-json-datasource.zip simpod-json-datasource -r && rm -rfd simpod-json-datasource",
"prettier:check": "prettier --list-different \"**/*.{ts,tsx,scss}\"",
"prettier:write": "yarn run prettier:check --write",
Expand Down

0 comments on commit 68a2215

Please sign in to comment.