mirror of
https://github.com/dergigi/boris.git
synced 2025-12-24 18:14:21 +01:00
- Add project structure with TypeScript, React, and Vite - Implement nostr authentication using browser extension (NIP-07) - Add NIP-51 compliant bookmark fetching and display - Create minimal UI with login and bookmark components - Integrate applesauce-core and applesauce-react libraries - Add responsive styling with dark/light mode support - Include comprehensive README with setup instructions This is a minimal MVP for a nostr bookmark client that allows users to view their bookmarks according to NIP-51 specification.
23 lines
1.0 KiB
JSON
23 lines
1.0 KiB
JSON
{
|
|
"rules": {
|
|
"generator-star": ["generator-star-spacing"],
|
|
"global-strict": ["strict"],
|
|
"no-arrow-condition": ["no-confusing-arrow", "no-constant-condition"],
|
|
"no-comma-dangle": ["comma-dangle"],
|
|
"no-empty-class": ["no-empty-character-class"],
|
|
"no-empty-label": ["no-labels"],
|
|
"no-extra-strict": ["strict"],
|
|
"no-reserved-keys": ["quote-props"],
|
|
"no-space-before-semi": ["semi-spacing"],
|
|
"no-wrap-func": ["no-extra-parens"],
|
|
"space-after-function-name": ["space-before-function-paren"],
|
|
"space-after-keywords": ["keyword-spacing"],
|
|
"space-before-function-parentheses": ["space-before-function-paren"],
|
|
"space-before-keywords": ["keyword-spacing"],
|
|
"space-in-brackets": ["object-curly-spacing", "array-bracket-spacing", "computed-property-spacing"],
|
|
"space-return-throw-case": ["keyword-spacing"],
|
|
"space-unary-word-ops": ["space-unary-ops"],
|
|
"spaced-line-comment": ["spaced-comment"]
|
|
}
|
|
}
|