Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
golangci
/
golangci-lint-action
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Security
Insights
Additional navigation options
Code
Pull requests
Actions
Security
Insights
Files
c2427fe
.github
dist
sample-go-mod
sample-go-tool
sample
src
static
.eslintrc.json
.gitattributes
.gitignore
.golangci.yml
.nvmrc
.prettierrc.json
CONTRIBUTING.md
LICENSE
README.md
action.yml
go.mod
package-lock.json
package.json
problem-matchers.json
tsconfig.json
Breadcrumbs
golangci-lint-action
/
package.json
Blame
Blame
Latest commit
History
History
53 lines (53 loc) · 1.79 KB
Breadcrumbs
golangci-lint-action
/
package.json
Top
File metadata and controls
Code
Blame
53 lines (53 loc) · 1.79 KB
Raw
{ "name": "golanci-lint-action", "version": "7.0.0", "private": true, "description": "golangci-lint github action", "main": "dist/main.js", "scripts": { "build": "tsc && ncc build -o dist/run/ src/main.ts && ncc build -o dist/post_run/ src/post_main.ts", "watched_build_main": "tsc && ncc build -w -o dist/run/ src/main.ts", "watched_build_post_main": "tsc && ncc build -w -o dist/post_run/ src/post_main.ts", "type-check": "tsc", "lint": "eslint --max-warnings 1 **/*.ts --cache", "lint-fix": "eslint **/*.ts --cache --fix", "format": "prettier --write **/*.ts", "format-check": "prettier --check **/*.ts", "all": "npm run build && npm run format-check && npm run lint", "local": "npm run build && act -j test -b", "local-full-version": "npm run build && act -j test-full-version -b" }, "repository": { "type": "git", "url": "git+https://github.com/golangci/golangci-lint-action.git" }, "author": "golangci", "license": "MIT", "dependencies": { "@actions/cache": "^4.0.3", "@actions/core": "^1.11.1", "@actions/exec": "^1.1.1", "@actions/github": "^6.0.0", "@actions/http-client": "^2.2.3", "@octokit/plugin-retry": "^6.1.0", "@actions/tool-cache": "^2.0.2", "@types/node": "^22.14.0", "@types/semver": "^7.7.0", "@types/tmp": "^0.2.6", "@types/which": "^3.0.4", "tmp": "^0.2.3", "which": "^5.0.0" }, "devDependencies": { "@typescript-eslint/eslint-plugin": "^8.29.0", "@typescript-eslint/parser": "^8.29.0", "@vercel/ncc": "^0.38.3", "eslint": "^8.57.1", "eslint-config-prettier": "^10.1.1", "eslint-plugin-import": "^2.31.0", "eslint-plugin-prettier": "^5.2.6", "eslint-plugin-simple-import-sort": "^12.1.1", "prettier": "^3.5.3", "typescript": "^5.8.3" } }
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
You can’t perform that action at this time.