A local-first note taking app
0

Configure Feed

Select the types of activity you want to include in your feed.

Block inline imports

Ethan Graf (May 18, 2026, 12:33 AM EDT) 8f6d7dae 58741f6b

+9
+9
.eslintrc.json
··· 19 19 "typescript": true, 20 20 "node": true 21 21 } 22 + }, 23 + "rules": { 24 + "no-restricted-syntax": [ 25 + "error", 26 + { 27 + "selector": "TSImportType[qualifier!=null]", 28 + "message": "Use a top-level `import type` instead of inline `import('…').Type`." 29 + } 30 + ] 22 31 } 23 32 }