File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ Once the issue is fixed and the compliance test passes you may delete WIP.md wit
101101
102102When working with golangci-lint:
103103
104- 1 . ** Running the Linter** : Use ` golangci- lint run ./... ` to check for linter errors
104+ 1 . ** Running the Linter** : Use ` yarn lint` to run the linter, ` yarn lint:go ` for go and ` yarn lint:js ` for js
1051052 . ** Fixing Errors** : Address linter errors in the affected code files
1061063 . ** Iterating** : Repeat the linting process until no errors remain
1071074 . ** Ignoring Warnings** : You can ignore linter errors with inline comments when the warning is unnecessarily strict:
@@ -110,6 +110,8 @@ When working with golangci-lint:
110110 ```
111111 This is appropriate for cases like deferring Close without checking the error return value, which can often be safely ignored.
112112
113+ Make sure that ` yarn test ` and ` yarn lint ` both pass before suggesting a task is complete.
114+
113115## Specialized Workflows
114116
115117### Squash Commits
Original file line number Diff line number Diff line change 55 TypeKind ,
66 isStructTypeInfo ,
77 isInterfaceTypeInfo ,
8- type MethodSignature ,
98} from '../builtin/type.js'
109
1110// rtype is the common implementation of most values
You can’t perform that action at this time.
0 commit comments