-
-
Notifications
You must be signed in to change notification settings - Fork 48
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
chore: update eslint, prettier, eslint-prettier to current #189
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
layout node | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
dist/ | ||
examples/ | ||
test/fixtures/ | ||
test/fixtures/node_modules/ | ||
eslint.config.js |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
"version": "5.1.1", | ||
"engines": { | ||
"vscode": "^1.63.0", | ||
"node": "^16.13.0" | ||
"node": "^21.0.0" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd rather not update this as it's not needed by the code or any of the packages. |
||
}, | ||
"categories": [ | ||
"Formatters" | ||
|
@@ -56,33 +56,34 @@ | |
"contributors:generate": "all-contributors generate" | ||
}, | ||
"devDependencies": { | ||
"@auto-it/exec": "^10.42.2", | ||
"@auto-it/first-time-contributor": "^10.42.2", | ||
"@auto-it/released": "^10.42.2", | ||
"@auto-it/upload-assets": "^10.42.2", | ||
"@auto-it/vscode": "^10.42.2", | ||
"@types/node": "^18.14.2", | ||
"@vscode/test-electron": "^2.2.3", | ||
"all-contributors-cli": "^6.24.0", | ||
"auto": "^10.42.2", | ||
"esbuild": "^0.16.14", | ||
"esbuild-plugin-text-replace": "^1.2.0", | ||
"eslint": "^8.31.0", | ||
"@auto-it/exec": "^11.0.4", | ||
"@auto-it/first-time-contributor": "^11.0.4", | ||
"@auto-it/released": "^11.0.4", | ||
"@auto-it/upload-assets": "^11.0.4", | ||
"@types/node": "^20.8.6", | ||
"@vscode/test-electron": "^2.3.5", | ||
"@vscode/vsce": "^2.21.1", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why is this package needed? 🙂 |
||
"all-contributors-cli": "^6.26.1", | ||
"auto": "^11.0.4", | ||
"esbuild": "^0.19.4", | ||
"esbuild-plugin-text-replace": "^1.3.0", | ||
"eslint": "^8.52.0", | ||
"eslint-config-airbnb-base": "^15.0.0", | ||
"eslint-plugin-import": "^2.26.0", | ||
"eslint-plugin-jest": "^27.2.0", | ||
"jest": "^29.3.1", | ||
"jest-environment-node": "^29.3.1", | ||
"ovsx": "^0.7.1", | ||
"prettier": "^2.8.1", | ||
"eslint-plugin-import": "^2.28.1", | ||
"eslint-plugin-jest": "^27.4.2", | ||
"jest": "^29.7.0", | ||
"jest-environment-node": "^29.7.0", | ||
"ovsx": "^0.8.3", | ||
"prettier": "^3.0.3", | ||
"ts-node": "^10.9.1", | ||
"typescript": "^4.9.5", | ||
"typescript": "^5.2.2", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If you update TypeScript then you have to update the examples. Rather we do the least amount of changes |
||
"@eslint/eslintrc": "^2.1.2", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why is this package needed? |
||
"vsce": "^2.15.0" | ||
}, | ||
"dependencies": { | ||
"find-up": "^6.3.0", | ||
"ignore": "^5.2.4", | ||
"prettier-eslint": "^15.0.1" | ||
"prettier-eslint": "^16.1.1" | ||
}, | ||
"contributes": { | ||
"configuration": { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,12 +3,12 @@ | |
exports[`Extension Test Suite Format document using .prettierrc 1`] = ` | ||
"/* eslint-disable */ | ||
const options = { | ||
first: "hello, world", | ||
first: 'hello, world', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This indicates that there is a bug as the snapshots shouldn't change between versions |
||
second: true, | ||
internationalizing: true, | ||
} | ||
}; | ||
|
||
export { options } | ||
export { options }; | ||
" | ||
`; | ||
|
||
|
@@ -25,11 +25,11 @@ export { options }; | |
|
||
exports[`Extension Test Suite setting "prettierLast" makes prettier run last 1`] = ` | ||
"const options = { | ||
first: "hello, world", | ||
first: 'hello, world', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This indicates that there is a bug as the snapshots shouldn't change between versions |
||
second: true, | ||
internationalizing: true, | ||
} | ||
}; | ||
|
||
export { options } | ||
export { options }; | ||
" | ||
`; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's this file? 🙂