Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions .eslintrc.cjs

This file was deleted.

34 changes: 17 additions & 17 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
day: "sunday"
time: "02:00"
open-pull-requests-limit: 2
groups:
minor-and-patch:
applies-to: version-updates
update-types:
- "patch"
- "minor"
major:
applies-to: version-updates
update-types:
- "major"
- package-ecosystem: 'npm'
directory: '/'
schedule:
interval: 'weekly'
day: 'sunday'
time: '02:00'
open-pull-requests-limit: 2
groups:
minor-and-patch:
applies-to: version-updates
update-types:
- 'patch'
- 'minor'
major:
applies-to: version-updates
update-types:
- 'major'
12 changes: 9 additions & 3 deletions .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,17 @@
"useTabs": false,
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "es5",
"trailingComma": "all",
"printWidth": 100,
"plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
"pluginSearchDirs": false,
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }],
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
],
"semi": false,
"svelteAllowShorthand": false
}
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode"]
}
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,12 @@ features and SEPs in a user-facing product.
- [Companion Tutorial](#companion-tutorial)
- [Development Instructions](#development-instructions)
- [Where to Start in this Repository?](#where-to-start-in-this-repository)
- [Stellar](#stellar)
- [SEPs](#seps)
- [Other Stellar Functionality](#other-stellar-functionality)
- [SvelteKit](#sveltekit)
- [Pages and Routes](#pages-and-routes)
- [Stores](#stores)

- [Stellar](#stellar)
- [SEPs](#seps)
- [Other Stellar Functionality](#other-stellar-functionality)
- [SvelteKit](#sveltekit)
- [Pages and Routes](#pages-and-routes)
- [Stores](#stores)

## Companion App

Expand Down
32 changes: 32 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
import prettier from 'eslint-config-prettier'
import path from 'node:path'
import { includeIgnoreFile } from '@eslint/compat'
import js from '@eslint/js'
import svelte from 'eslint-plugin-svelte'
import { defineConfig } from 'eslint/config'
import globals from 'globals'
import svelteConfig from './svelte.config.js'

const gitignorePath = path.resolve(import.meta.dirname, '.gitignore')

export default defineConfig([
includeIgnoreFile(gitignorePath),
js.configs.recommended,
svelte.configs.recommended,
prettier,
svelte.configs.prettier,
{
languageOptions: { globals: { ...globals.browser, ...globals.node } },
},

{
files: ['**/*.svelte', '**/*.svelte.js'],
languageOptions: { parserOptions: { svelteConfig } },
},

{
// Override or add rule settings here, such as:
// 'svelte/button-has-type': 'error'
rules: {},
},
])
2 changes: 1 addition & 1 deletion jsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"strict": true
}
// Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias and https://kit.svelte.dev/docs/configuration#files
//
Expand Down
31 changes: 17 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,42 +8,45 @@
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"lint": "prettier --check . && prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write . && prettier --write .",
"test": "vitest"
},
"type": "module",
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@eslint/compat": "^2.0.4",
"@eslint/js": "^10.0.1",
"@rollup/plugin-inject": "^5.0.5",
"@stellar/stellar-sdk": "^12.3.0",
"@stellar/typescript-wallet-sdk-km": "^1.7.0",
"@sveltejs/adapter-auto": "^3.2.5",
"@sveltejs/adapter-static": "^3.0.5",
"@sveltejs/kit": "^2.6.2",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.57.1",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^24",
"autoprefixer": "^10.4.20",
"daisyui": "^4.12.10",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.44.1",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.17.0",
"globals": "^17.5.0",
"jsdom": "^25.0.1",
"path": "^0.12.7",
"postcss": "^8.4.47",
"postcss-load-config": "^6.0.1",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.7",
"prettier-plugin-tailwindcss": "^0.6.8",
"svelte": "^4.2.19",
"prettier": "^3.8.2",
"prettier-plugin-svelte": "^3.5.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"svelte": "^5.0.0",
"svelte-check": "^4.0.4",
"svelte-copy": "^1.4.2",
"svelte-feather-icons": "^4.1.0",
"svelte-local-storage-store": "^0.6.4",
"svelte-preprocess": "^6.0.3",
"svelte-simple-modal": "^1.6.2",
"svelte-simple-modal": "^2.0.0",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2",
"uuid": "^10.0.0",
Expand Down
Loading
Loading