fix: Clean up repository by removing unused files and references #1360
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hey! I'm working on issue #1354 to clean up some unused files in the repo.
I found a couple of things that could be cleaned up:
There's a
tstore_test.sol
sitting in the root dir that's not doing much. It's just a basic test for tstore/tload ops and isn't part of our main test suite. Plus, we already have this covered with the Cancun upgrade support. No need for test files in the root!The
.codeclimate.yml
file isn't being used at all. Checked the CI pipeline, README, and package.yaml - nada. It's just sitting there with some basic hlint config that we're not using. The only mention of it was in CONTRIBUTING.md which was outdated.Fixed CONTRIBUTING.md by removing that outdated CodeClimate reference. We're actually using GitHub Actions, HLint, and our standard Haskell compiler warnings for code quality checks.
These changes should make the repo a bit cleaner and prevent any confusion for other contributors. Let me know if you want me to tweak anything!