Skip to content
Merged
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
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ quote_type = single
[*.{json,yaml,yml,toml}]
indent_size = 2

[*.{md,mdx}]
indent_size = 2

[*{toml}]
end_of_line = lf
indent_size = 2
Expand Down
146 changes: 92 additions & 54 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,65 +1,68 @@
# Artifacts
# General
**/.artifacts/tmp/
**/.docker/data

**/.artifacts/data/
**/.docker/data/
**/.cache/
**/.DS_Store

*.bk
*.bk.*

## Caches
*.bak
*.bak.*

**/.cache/
*.csv
*.csv.*

# Configuration Files
*.db
*.db.*

**/config.*
**/*.config.*
*.db-*.*

**/*.env
**/*.env.*
*.error
*.error.*

### Exceptions
!**/default.config.*
!**/*.config.cjs
!**/*.config.js
!**/*.config.mjs
!**/config.py
!**/config.rs
*.gz
*.gz.*

!**/example.env.*
!**/*.env.example
!**/*.env.default
*.log
*.log.*

# Dev
*.sqlite
*.sqlite.*

### Idea
*.zip
*.zip.*

**/.idea/
## Development Environments

### vscode

**/.vscode/
### IntelliJ Idea
**/.idea/

# File Extensions
**/*.iml
**/*.iml.*

**/*.lock
**/*.lock.*
**/*.iws
**/*.iws.*

**/*-lock.*
### Visual Studio Code
**/.vscode/

**/*.log
**/*.log.*
!.vscode/settings.*
!.vscode/launch.*

### Data Files
## Operating Systems

**/*.csv
**/*.csv.*
### Nix
!flake.lock

**/*.db
**/*.db.*
### Windows (WSL2)
**/*:Zone.Identifier

**/*.db-*.*
**/.artifacts/data/
**/.docker/data/

**/*.zip
**/*.zip.*
# Language Specific

## Rust
**/debug/
Expand All @@ -70,17 +73,6 @@

!Cargo.lock

## Node
**/build/
**/debug/
**/dist/
**/node_modules/

### SvelteKit
**/__sapper__/
**/.DS_STORE/
**/.svelte-kit/

## Python
**/__pycache__/
**/.pytest_cache/
Expand All @@ -106,7 +98,53 @@
**/*.whl
**/*.whl.*

## Operating Systems
## Node.js
**/.DS_STORE
**/.pnp
**/.pnp.*
**/.vercel
**/build
**/debug
**/dist
**/node_modules

### Windows (WSL2)
**/*:Zone.Identifier
### TypeScript
**/*.tsbuildinfo

### npm
!**/package-lock.json
**/npm-debug.log

### yarn
**/.yarn/install-state.gz
**/yarn-error.log
**/yarn-debug.log

### SvelteKit
**/__sapper__/
**/.svelte-kit/

### Deno
**/deno.json
**/deno.jsonc

### Next.js
**/.next
**/out

**/next-env.d.ts

### Jest
**/.swc
**/coverage

### OpenNext (Cloudflare)
**/.open-next
**/.wrangler
**/.vercel

### Supabase
**/supabase/temp

### Vercel
**/.vercel
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"rust-analyzer.check.features": [
"default",
"full"
]
}
6 changes: 3 additions & 3 deletions CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# the default owners of all files and directories within the repository
# except those that are explicitly assigned to other owners.
* @FL03 @scattered-systems
# *** ROOT ***
# Unless otherwise specified, all files in this repository are owned by the following user(s):
* @FL03
Loading
Loading