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

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 29 to 32
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch"
},
"lint-staged": {
"*.{html,md,yml}": [
"prettier --write"
],
"*.{js,ts,json}": [
"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 Keep lint-staged usable or remove pre-commit invocation

The change deletes the lint-staged configuration from package.json, but the Husky pre-commit hook still runs yarn lint-staged. When lint-staged has no config it exits with a non‑zero “Configuration is required” error, so every commit will be blocked. Either keep a lint-staged config or drop the hook/dependency to avoid breaking local commits.

Useful? React with 👍 / 👎.

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