Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 714 Bytes

File metadata and controls

34 lines (24 loc) · 714 Bytes

Contributing to Python IDE

Thank you for your interest in contributing!

How to Contribute

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

Development Setup

# Clone your fork
git clone https://github.com/YOUR_USERNAME/python-ide.git
cd python-ide

# Install Flutter dependencies
flutter pub get

# Run the app
flutter run

# Run static analysis
flutter analyze

Code Style

  • Follow Flutter/Dart conventions
  • Run flutter analyze before submitting PRs
  • Write descriptive commit messages