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
6 changes: 5 additions & 1 deletion .github/workflows/pre-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ jobs:
- name: Check dependencies alignment
run: yarn check-dependencies

- name: Run Lint
- name: Run Workspace Lint
run: yarn lint

- name: Run Website Specific Lints
working-directory: website
run: yarn ci:lint

build:
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@
"check-dependencies": "manypkg check"
},
"devDependencies": {
"@eslint/css": "^0.10.0",
"@eslint/css": "^0.14.1",
"@eslint/js": "^9.39.1",
"@manypkg/cli": "^0.25.1",
"@typescript-eslint/parser": "^8.46.4",
"@typescript-eslint/parser": "^8.47.0",
"case-police": "^2.1.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
Expand All @@ -40,8 +40,8 @@
"husky": "^9.1.7",
"prettier": "^3.6.2",
"pretty-quick": "^4.2.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.46.4"
"typescript": "^5.9.3",
"typescript-eslint": "^8.47.0"
},
"packageManager": "yarn@4.11.0"
}
28 changes: 14 additions & 14 deletions packages/lint-examples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,25 +12,25 @@
"lint": "tsc --noEmit && eslint"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/runtime": "^7.28.4",
"@eslint/compat": "^1.3.2",
"@react-native-community/slider": "^4.5.7",
"@react-native/babel-preset": "^0.81.1",
"@react-native/eslint-config": "^0.81.1",
"@react-native/eslint-plugin": "^0.81.1",
"@react-native/typescript-config": "^0.81.1",
"@types/react": "^19.1.13",
"@eslint/compat": "^2.0.0",
"@react-native-community/slider": "^5.1.1",
"@react-native/babel-preset": "^0.82.1",
"@react-native/eslint-config": "^0.82.1",
"@react-native/eslint-plugin": "^0.82.1",
"@react-native/typescript-config": "^0.82.1",
"@types/react": "^19.1.17",
"eslint": "^9.39.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-jest": "^29.2.0",
"eslint-plugin-react": "^7.37.5",
"glob": "^11.1.0",
"glob": "^13.0.0",
"prettier": "^3.6.2",
"react": "^19.1.1",
"react-native": "^0.81.4",
"react-native-safe-area-context": "^5.6.1",
"typescript": "^5.9.2"
"react-native": "^0.82.1",
"react-native-safe-area-context": "^5.6.2",
"typescript": "^5.9.3"
}
}
12 changes: 7 additions & 5 deletions plugins/remark-lint-no-dead-urls/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,15 @@
"test": "yarn node --experimental-vm-modules $(yarn bin jest)"
},
"dependencies": {
"got": "^14.6.3",
"unified-lint-rule": "^3.0.0",
"unist-util-visit": "^5.0.0"
"got": "^14.6.4",
"unified-lint-rule": "^3.0.1",
"unist-util-visit": "^5.0.0",
"vfile": "^6.0.3"
},
"devDependencies": {
"dedent": "^1.5.3",
"jest": "^29.4.3",
"@types/mdast": "^4.0.4",
"dedent": "^1.7.0",
"jest": "^29.7.0",
"remark": "^15.0.1"
}
}
9 changes: 5 additions & 4 deletions plugins/remark-snackplayer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,16 @@
"test": "yarn tape tests/index.ts"
},
"dependencies": {
"dedent": "^1.5.3",
"object.fromentries": "^2.0.3",
"dedent": "^1.7.0",
"object.fromentries": "^2.0.8",
"unist-util-visit-parents": "^3.1.1"
},
"devDependencies": {
"@types/mdast": "^4.0.4",
"@types/object.fromentries": "^2.0.4",
"@types/tape": "^5.8.1",
"remark": "^15.0.1",
"remark-mdx": "^3.1.0",
"tape": "^5.7.0"
"remark-mdx": "^3.1.1",
"tape": "^5.9.0"
}
}
10 changes: 5 additions & 5 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"lint:markdown:links": "remark ../docs --quiet -r .remarkrc.withBrokenLinks.mjs",
"language:lint": "cd ../ && alex",
"language:lint:versioned": "cd ../ && alex .",
"ci:lint": "yarn lint && yarn lint:examples && yarn language:lint:versioned && yarn lint:markdown:images && prettier --check src/**/*.scss",
"ci:lint": "yarn lint:examples && yarn language:lint:versioned && yarn lint:markdown:images && prettier --check src/**/*.scss",
"pwa:generate": "npx pwa-asset-generator ./static/img/header_logo.svg ./static/img/pwa --padding '40px' --background 'rgb(32, 35, 42)' --icon-only --opaque true",
"update-redirects": "node ../scripts/src/update-redirects.ts"
},
Expand Down Expand Up @@ -64,13 +64,13 @@
"@react-native-website/lint-examples": "*",
"@signalwire/docusaurus-plugin-llms-txt": "^1.2.2",
"@types/google.analytics": "^0.0.46",
"@types/react": "^19.1.13",
"@types/react": "^19.1.17",
"alex": "^11.0.1",
"eslint": "^9.39.1",
"glob": "^11.1.0",
"glob": "^13.0.0",
"prettier": "^3.6.2",
"remark-cli": "^12.0.1",
"sass": "1.94.0",
"typescript": "^5.9.2"
"sass": "1.94.2",
"typescript": "^5.9.3"
}
}
Loading