Skip to content

Commit

Permalink
Merge branch 'main' into feature-v1-auth-ui
Browse files Browse the repository at this point in the history
  • Loading branch information
studiokaiji authored Oct 10, 2023
2 parents 676bc0c + 1a32b66 commit 92a4fd2
Show file tree
Hide file tree
Showing 35 changed files with 1,453 additions and 818 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/notify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
relays: ${{ vars.NOSTR_RELAYS }}
private-key: ${{ secrets.NOSTR_PRIVATE_KEY }}
content: |
Issue: ${{ github.event.issue.title }}
Issue by @${{ github.event.sender.login }}: ${{ github.event.issue.title }}
${{ github.event.issue.html_url }} #nostter
tags: |
- ["t", "nostter"]
Expand All @@ -33,7 +33,7 @@ jobs:
relays: ${{ vars.NOSTR_RELAYS }}
private-key: ${{ secrets.NOSTR_PRIVATE_KEY }}
content: |
PR: ${{ github.event.pull_request.title }}
PR merged: ${{ github.event.pull_request.title }}
${{ github.event.pull_request.html_url }} #nostter
tags: |
- ["t", "nostter"]
Expand Down
14 changes: 9 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,15 @@ javascript:window.open(`https://nostter.vercel.app/post?content=${document.title

## Dependencies

- [Nostr](https://github.com/nostr-protocol/nostr), [nostr-tools](https://github.com/nbd-wtf/nostr-tools)
- Svelte, SvelteKit, Vite
- TypeScript, JavaScript, Node.js
- Vitest, Playwright
- [Tabler Icons for Svelte](https://tabler.io/docs/icons/svelte)
| Category | Names |
| - | - |
| Nostr | [Nostr](https://github.com/nostr-protocol/nostr), [nostr-tools](https://github.com/nbd-wtf/nostr-tools), [rx-nostr](https://github.com/penpenpng/rx-nostr), [nip07-awaiter](https://github.com/penpenpng/nip07-awaiter) |
| Frameworks | Svelte, SvelteKit, Vite |
| Languages | TypeScript, JavaScript, Node.js |
| Tests | Vitest, Playwright |
| UI | [Tabler Icons for Svelte](https://tabler.io/docs/icons/svelte), [emoji-kitchen-mart](https://www.npmjs.com/package/emoji-kitchen-mart) |

See full list at [package.json](web/package.json)

## License

Expand Down
18 changes: 12 additions & 6 deletions web/.eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier'],
plugins: ['svelte3', '@typescript-eslint'],
extends: ['plugin:svelte/recommended'],
plugins: ['@typescript-eslint'],
ignorePatterns: ['*.cjs'],
overrides: [{ files: ['*.svelte'], processor: 'svelte3/svelte3' }],
settings: {
'svelte3/typescript': () => require('typescript')
},
overrides: [
{
files: ['*.svelte'],
parser: 'svelte-eslint-parser',
parserOptions: { parser: '@typescript-eslint/parser' }
}
],
parserOptions: {
sourceType: 'module',
ecmaVersion: 2020
Expand All @@ -16,5 +19,8 @@ module.exports = {
browser: true,
es2017: true,
node: true
},
rules: {
'svelte/valid-compile': 'off'
}
};
1 change: 0 additions & 1 deletion web/.prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,5 @@
"trailingComma": "none",
"printWidth": 100,
"plugins": ["prettier-plugin-svelte"],
"pluginSearchDirs": ["."],
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
}
Loading

0 comments on commit 92a4fd2

Please sign in to comment.