├── .github └── ISSUE_TEMPLATE │ ├── Bug_report.md │ ├── Feature_request.md │ ├── NEW_ADDITION_TO_LIST.md │ └── REMOVE_ITEM_FROM_LIST.md ├── .gitignore ├── .travis.yml ├── CODE-OF-CONDUCT.md ├── LICENSE ├── README-zh.md ├── README.md ├── contributing.md ├── docs ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── editor-plugin-zh.md ├── editor-plugin.md └── package.json /.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agalwood/awesome-mac/HEAD/.github/ISSUE_TEMPLATE/Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agalwood/awesome-mac/HEAD/.github/ISSUE_TEMPLATE/Feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/NEW_ADDITION_TO_LIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agalwood/awesome-mac/HEAD/.github/ISSUE_TEMPLATE/NEW_ADDITION_TO_LIST.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/REMOVE_ITEM_FROM_LIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agalwood/awesome-mac/HEAD/.github/ISSUE_TEMPLATE/REMOVE_ITEM_FROM_LIST.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .deploy/ 2 | node_modules/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agalwood/awesome-mac/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agalwood/awesome-mac/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agalwood/awesome-mac/HEAD/LICENSE -------------------------------------------------------------------------------- /README-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agalwood/awesome-mac/HEAD/README-zh.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agalwood/awesome-mac/HEAD/README.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agalwood/awesome-mac/HEAD/contributing.md -------------------------------------------------------------------------------- /docs/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agalwood/awesome-mac/HEAD/docs/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /docs/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agalwood/awesome-mac/HEAD/docs/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /editor-plugin-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agalwood/awesome-mac/HEAD/editor-plugin-zh.md -------------------------------------------------------------------------------- /editor-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agalwood/awesome-mac/HEAD/editor-plugin.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agalwood/awesome-mac/HEAD/package.json --------------------------------------------------------------------------------