Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release #524

Merged
merged 2 commits into from
Aug 30, 2024
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@fishbrain/eslint-config-monorepo",
"description": "ESLint configs for Fishbrain projects",
"version": "6.0.0",
"version": "6.0.1",
"workspaces": [
"packages/*"
],
Expand Down
3 changes: 3 additions & 0 deletions packages/base/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import _config from './eslint.config.js';

export const config = _config;
5 changes: 2 additions & 3 deletions packages/base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@
"packageManager": "yarn@4.4.1",
"version": "6.0.0",
"type": "module",
"exports": "./index.js",
"scripts": {
"test": "eslint --no-ignore eslint.config.js"
"test": "eslint index.js eslint.config.js"
},
"dependencies": {
"@eslint/js": "^9.9.1",
"eslint": "^9.9.1",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
Expand Down
3 changes: 0 additions & 3 deletions packages/base/test.ts

This file was deleted.

3 changes: 3 additions & 0 deletions packages/react/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import _config from './eslint.config.js';

export const config = _config;
7 changes: 3 additions & 4 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@fishbrain/eslint-config-react",
"packageManager": "yarn@4.4.1",
"version": "6.0.0",
"version": "6.0.1",
"type": "module",
"exports": "./index.js",
"scripts": {
"test": "eslint --no-ignore eslint.config.js"
"test": "eslint index.js eslint.config.js"
},
"devDependencies": {
"jest": "^29.7.0",
"react": "^18.3.1",
"typescript": "^5.5.4"
},
Expand All @@ -18,7 +18,6 @@
"eslint-plugin-compat": "^6.0.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"typescript-eslint": "^8.3.0"
},
"peerDependencies": {
Expand Down
Loading