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
12 changes: 4 additions & 8 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"plugins": [
"@prettier/plugin-oxc"
],
"overrides": [
{
"files": ["*.js", "*.mjs", "*.cjs", "*.jsx", "*.ts", "*.tsx"],
Expand Down Expand Up @@ -26,14 +29,7 @@
}
},
{
"files": ["*.scss", "*.css"],
"options": {
"printWidth": 80,
"endOfLine": "auto"
}
},
{
"files": ["*.yml"],
"files": ["*.scss", "*.css", "*.yml"],
"options": {
"printWidth": 80,
"endOfLine": "auto"
Expand Down
5 changes: 3 additions & 2 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export default defineConfig([
'**/.yarn',
'**/node_modules',
'packages/lint-examples/out',
'plugins/remark-snackplayer/tests/(markdown|output)',
'website/.docusaurus',
'website/build',
'website/static',
Expand Down Expand Up @@ -113,9 +114,9 @@ export default defineConfig([
'warn',
{
ignore: [
`CODE_OF_CONDUCT.md`,
'CODE_OF_CONDUCT.md',
// skip older blog posts
`website/blog/201*`,
'website/blog/201*',
],
alexOptions: {
// use a "maybe" level of profanity instead of the default "unlikely"
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"@eslint/css": "^0.14.1",
"@eslint/js": "^9.39.1",
"@manypkg/cli": "^0.25.1",
"@typescript-eslint/parser": "^8.47.0",
"@typescript-eslint/parser": "^8.48.1",
"alex": "^11.0.1",
"case-police": "^2.1.1",
"eslint": "^9.39.1",
Expand All @@ -40,10 +40,10 @@
"eslint-plugin-yml": "^1.19.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"prettier": "^3.7.4",
"pretty-quick": "^4.2.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.47.0"
"typescript-eslint": "^8.48.1"
},
"packageManager": "yarn@4.11.0"
"packageManager": "yarn@4.12.0"
}
6 changes: 3 additions & 3 deletions packages/lint-examples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
"@types/react": "^19.1.17",
"eslint": "^9.39.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jest": "^29.2.0",
"eslint-plugin-jest": "^29.2.1",
"eslint-plugin-react": "^7.37.5",
"glob": "^13.0.0",
"prettier": "^3.6.2",
"react": "^19.1.1",
"prettier": "^3.7.4",
"react": "^19.1.2",
"react-native": "^0.82.1",
"react-native-safe-area-context": "^5.6.2",
"typescript": "^5.9.3"
Expand Down
7 changes: 4 additions & 3 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,21 +51,22 @@
"@docusaurus/plugin-pwa": "3.9.2",
"@docusaurus/preset-classic": "3.9.2",
"docusaurus-plugin-sass": "^0.2.6",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react": "^19.1.2",
"react-dom": "^19.1.2",
"react-github-btn": "^1.4.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.9.2",
"@docusaurus/tsconfig": "3.9.2",
"@docusaurus/types": "3.9.2",
"@prettier/plugin-oxc": "^0.1.3",
"@react-native-website/lint-examples": "*",
"@signalwire/docusaurus-plugin-llms-txt": "^1.2.2",
"@types/google.analytics": "^0.0.46",
"@types/react": "^19.1.17",
"eslint": "^9.39.1",
"glob": "^13.0.0",
"prettier": "^3.6.2",
"prettier": "^3.7.4",
"remark-cli": "^12.0.1",
"sass": "1.94.2",
"typescript": "^5.9.3"
Expand Down
Loading