https://github.com/at-microcosm/ufos-app
Samples and stats for every lexicon observed in the ATmosphere
https://github.com/at-microcosm/ufos-app
atproto firehose lexicon statistics
Last synced: 10 months ago
JSON representation
Samples and stats for every lexicon observed in the ATmosphere
- Host: GitHub
- URL: https://github.com/at-microcosm/ufos-app
- Owner: at-microcosm
- Created: 2025-05-28T17:44:41.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-16T21:23:36.000Z (about 1 year ago)
- Last Synced: 2025-06-24T22:39:01.612Z (12 months ago)
- Topics: atproto, firehose, lexicon, statistics
- Language: TypeScript
- Homepage: http://ufos.microcosm.blue/
- Size: 3.05 MB
- Stars: 3
- Watchers: 0
- Forks: 0
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# UFOs
Samples and stats for every lexicon observed in the ATmosphere
## Expanding the ESLint configuration
If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:
```js
export default tseslint.config({
extends: [
// Remove ...tseslint.configs.recommended and replace with this
...tseslint.configs.recommendedTypeChecked,
// Alternatively, use this for stricter rules
...tseslint.configs.strictTypeChecked,
// Optionally, add this for stylistic rules
...tseslint.configs.stylisticTypeChecked,
],
languageOptions: {
// other options...
parserOptions: {
project: ['./tsconfig.node.json', './tsconfig.app.json'],
tsconfigRootDir: import.meta.dirname,
},
},
})
```
You can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules:
```js
// eslint.config.js
import reactX from 'eslint-plugin-react-x'
import reactDom from 'eslint-plugin-react-dom'
export default tseslint.config({
plugins: {
// Add the react-x and react-dom plugins
'react-x': reactX,
'react-dom': reactDom,
},
rules: {
// other rules...
// Enable its recommended typescript rules
...reactX.configs['recommended-typescript'].rules,
...reactDom.configs.recommended.rules,
},
})
```