Skip to content

Conversation

@magistersart
Copy link

Summary

  • Removed .circleci/ configuration directory
  • Removed .husky/validate-circleci-config.sh script
  • Removed lint-staged configuration section from package.json

Changes Made

  • ✅ Deleted CircleCI configuration files
  • ✅ Removed Husky CircleCI validation hooks
  • ✅ Cleaned up lint-staged configuration references

Test Plan

  • Verify no CircleCI configurations remain
  • Confirm build and test processes still work
  • Check that commit hooks function properly without CircleCI validation

🤖 Generated with Claude Code

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
Copy link

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

ℹ️ About Codex in GitHub

Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

Comment on lines 38 to 41
"type-check": "tsc --noEmit",
"type-check:watch": "pnpm run type-check -- --watch"
},
"lint-staged": {
"*.{html,json,md,yml}": [
"prettier --write"
],
"*.{js,ts}": [
"eslint --fix"
]
},
"prettier": "@shelf/prettier-config",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Running lint-staged pre-commit now errors

This change removes the lint-staged configuration from package.json, but the repository still executes pnpm lint-staged from the Husky pre-commit hook. With no configuration file present, lint-staged exits with Config could not be found and the hook fails, blocking all commits. Either keep a configuration or stop invoking lint-staged so that the pre-commit workflow remains usable.

Useful? React with 👍 / 👎.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Development

Successfully merging this pull request may close these issues.

1 participant