Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

eng-557 build centralized linting system for all repos #10

Open
wants to merge 21 commits into
base: staging
Choose a base branch
from

Conversation

CDeltakai
Copy link
Contributor

@CDeltakai CDeltakai commented Mar 28, 2025

Description

This PR will implement a centralized linting system which will allow all MatrixAI repos to import from a single linting package (this one) and apply appropriate linting rules without further intervention. It should also allow downstream repos to extend the system in order to ignore certain rules or add project-specific rules.

Issues Fixed

Tasks

🔧 Repository Refactor

  • 1. Rename the repository from js-eslint to js-lint
  • 2. Update package.json:
    • 2.1 Change package name to @matrixai/lint
    • 2.2 Add a bin entry:
      "bin": {
        "lint": "dist/bin/lint.js"
      }

🧰 Lint Command Implementation

  • 3. Create src/bin/lint.ts
  • 4. Follow structure and logic of zeta.house/scripts/lint.mjs
  • 5. Implement lint runners for:
    • 5.1 eslint for JS/TS files
    • 5.2 prettier for markdown
    • 5.3 shellcheck for shell scripts
    • 5.4 clang-format for C/C++
    • 5.5 nixfmt for Nix files
    • 5.6 rustfmt for Rust files
  • 6. Ensure the script:
    • 6.1 Checks if each native dependency exists before executing
    • 6.2 Uses a fast, cross-platform commandExists utility

🧪 Add Utility Function

  • 7. Implement commandExists(programName: string): boolean that:
    • 7.1 Works on Linux, macOS, and Windows
    • 7.2 Is fast and lightweight
    • 7.3 Returns true/false for command existence
  • 7A. We need this package to be extendable by downstream repos as well so they can extend the package and ignore certain rules or implement custom rules if need be.

📦 Package Dependencies

  • 8. Add all relevant eslint, @typescript-eslint, prettier, and related dependencies
  • 9. Refer to zeta.house package.json as a baseline
  • 10. Do not include native tools like shellcheck or clang-format in package.json

🔁 Plugin De-emphasis

  • 11. Do not export an ESLint plugin as the main export
  • 12. Optionally retain plugin code for internal use only

🚀 Prepare for Release

  • 13. Tag the repo with version v0.0.1 (CI will handle publishing)

🌱 Downstream Integration

  • 14. Create a feature branch in js-logger
  • 15. Integrate @matrixai/lint and verify it runs correctly
  • 16. Optionally filter directories or extend the lint command if needed

Final checklist

  • Domain specific tests
  • Full tests
  • Updated inline-comment documentation
  • Lint fixed
  • Squash and rebased
  • Sanity check the final build

@CDeltakai CDeltakai self-assigned this Mar 28, 2025
Copy link

linear bot commented Mar 28, 2025

ENG-557

@CDeltakai CDeltakai changed the title Feature eng 557 centralized linting system for all repos eng-557 build centralized linting system for all repos Mar 28, 2025
… run eslint with a config override based inside the package when the lint script is run by a downstream repo when it is imported
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants