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
63 changes: 0 additions & 63 deletions .flowconfig

This file was deleted.

2 changes: 0 additions & 2 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
node_modules/
.yarn

flow-typed/
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The project uses `yarn` for dependency management and script execution.
- **Type Check:** `yarn typecheck` (Runs TypeScript compiler)
- **Format Check:** `yarn prettier`
- **Validate All:** `yarn validate` (Runs Prettier, ESLint, Typecheck, and Tests in sequence)
- **Build Project:** `yarn build` (Cleans, builds JS with Babel, builds TS types, and copies Flow types)
- **Build Project:** `yarn build` (Cleans, builds JS with Babel, and builds TS types)

## Development Conventions

Expand Down
137 changes: 0 additions & 137 deletions CLAUDE.md

This file was deleted.

1 change: 0 additions & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ module.exports = {
],
'@babel/preset-react',
'@babel/preset-typescript',
'@babel/preset-flow',
],
plugins: ['@babel/plugin-transform-strict-mode'],
env: {
Expand Down
9 changes: 1 addition & 8 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,7 @@ import jest from 'eslint-plugin-jest';

export default [
{
ignores: [
'flow-typed/',
'build/',
'experiments-rtl/',
'website/',
'eslint.config.mjs',
'jest-setup.ts',
],
ignores: ['build/', 'experiments-rtl/', 'website/', 'eslint.config.mjs', 'jest-setup.ts'],
},
...callstackConfig,
...tseslint.configs.strict,
Expand Down
Loading
Loading