forked from obsidianmd/obsidian-releases
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[RFC] Add github template (obsidianmd#165)
- Loading branch information
Showing
5 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"extends": ["plugin:json/recommended"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# [ ] I am submitting a new Community Theme | ||
|
||
## Repo URL | ||
|
||
<!--- Paste a link to your repo here for easy access --> | ||
|
||
# [ ] I am submitting a new Community Plugin | ||
|
||
## Release Checklist | ||
|
||
<!--- Confirm that you have done the following before submitting your plugin --> | ||
|
||
- [ ] I have tested this on Windows, macOS, and Linux _(if applicable)_ | ||
- [ ] Github release contains all required files | ||
- [ ] `main.js` | ||
- [ ] `manifest.json` | ||
- `styles.css` _(optional)_ | ||
- [ ] Github release name matches the exact version number specified in your manifest.json (_**Note:** Use the exact version number, don't include a prefix `v`_) | ||
- [ ] The `id` in my `manifest.json` matches the `id` in the `community-plugins.json` file. | ||
- [ ] README clearly describes the plugins purpose and provides clear usage instructions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- "master" | ||
pull_request: | ||
branches: | ||
- "master" | ||
|
||
jobs: | ||
lint-json: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install modules | ||
run: npm install | ||
- name: Lint | ||
run: yarn run lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"name": "obsidian-community-releases", | ||
"scripts": { | ||
"lint": "eslint . --ext .json" | ||
}, | ||
"devDependencies": { | ||
"eslint": "7.20.0", | ||
"eslint-plugin-json": "2.1.2" | ||
} | ||
} |