Skip to content

Commit

Permalink
cleanup typechain-types from v2
Browse files Browse the repository at this point in the history
  • Loading branch information
skosito committed Sep 11, 2024
1 parent 55f681d commit 4707c8d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/generated-files_v2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ jobs:
tar -zxvf geth-alltools-linux-amd64-1.11.5-a38f4108.tar.gz
sudo mv geth-alltools-linux-amd64-1.11.5-a38f4108/abigen /usr/local/bin/
- name: Generate Go packages and typechain-types
- name: Generate Go packages and types
run: |
yarn generate
- name: Check for changes
run: |
if git diff --exit-code --ignore-space-change --ignore-all-space --ignore-cr-at-eol -- pkg typechain-types; then
if git diff --exit-code --ignore-space-change --ignore-all-space --ignore-cr-at-eol -- pkg types; then
echo "Generated Go files are up-to-date."
else
echo "::error::Generated files are not up-to-date. Please run 'yarn generate' locally and commit any changes."
Expand Down
2 changes: 1 addition & 1 deletion v2/eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = [
{
ignores: [".yarn", "artifacts", "cache", "dist", "node_modules", "typechain-types", "abi", "docs", "lib"],
ignores: [".yarn", "artifacts", "cache", "dist", "node_modules", "types", "abi", "docs", "lib"],
languageOptions: {
ecmaVersion: 2020,
sourceType: "module",
Expand Down
2 changes: 1 addition & 1 deletion v2/slither.config.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"detectors_to_exclude": "",
"filter_paths": "contracts,artifacts,cache,data,dist,docs,lib,node_modules,pkg,scripts,test,testing,typechain-types"
"filter_paths": "contracts,artifacts,cache,data,dist,docs,lib,node_modules,pkg,scripts,test,testing,types"
}

0 comments on commit 4707c8d

Please sign in to comment.