Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 897 Bytes

CONTRIBUTING.md

File metadata and controls

21 lines (16 loc) · 897 Bytes

Contributing

To add a new extension to the registry:

  1. Fork the repo (create a new branch as well if you want)
  2. Modify extensions.json by adding your extension (do not edit README.md, it will be automatically generated once your change is merged)
  3. Push your changes to your fork and submit a pull request

extension.json file is an array of entries, where each entry describes a certain extension. Each entry should contain the following properties:

{
  "title": "Quick Align", // Title of the extension that shows up as a link in README.md
  "description": "Objects alignment without a hassle!", // Short description
  "author": "Andrey Shakhmin", // Author full name or nickname
  "owner": "turbobabr", // github user or org
  "name": "easyeda-quick-align-extension" // repo name
}

Thanks in advance!