Skip to content

Latest commit

 

History

History
62 lines (44 loc) · 2.05 KB

CONTRIBUTING.md

File metadata and controls

62 lines (44 loc) · 2.05 KB

Contributing - Adobe Brackets PHP-Beautify

Contributions and suggestions are very welcome and wanted. I try to respond to pull requests within 48 hours. To contribute simply

  1. Fork the repository.

    How do I do this?

  2. Open your extensions folder by selecting Help > Show Extensions Folder in Brackets

  3. Clone your forked repository inside the user folder in the folder from step 2

    git clone https://github.com/YOUR-USERNAME/brackets-php-beautify
    cd adobe-brackets-encode-decode
    

    Resources:

  4. Setup the development environment

    npm install
    

    Resources:

  5. Make the fix or add features to src/main.js. (See detailed instructions below)

    Compile the extension to use/test it in Brackets using npm run build

    Restart Brackets via Debug > Reload With Extensions to see your changes.

    To debug problems, use Debug > Show Developer Tools. You can use console.log(), set breakpoints, etc.

    Resources:

  6. Sync your fork to make sure you have the latest changes.

    # Fetch upstream master and merge with your repo's master branch
    git fetch upstream
    git checkout master
    git merge upstream/master
    
    # If there were any new commits, rebase your development branch
    git checkout newfeature
    git rebase master
    

    Resources:

  7. Create a pull request.

    Resources:

  8. Wait for the maintainer to respond.

Thank you for you for your awesome contribution :-)