Skip to content

Commit

Permalink
DEV: Update dependencies (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
CvX authored Jan 30, 2025
1 parent 2e32bba commit dafa937
Show file tree
Hide file tree
Showing 15 changed files with 416 additions and 476 deletions.
20 changes: 10 additions & 10 deletions lint-configs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@discourse/lint-configs",
"version": "2.3.0",
"version": "2.3.1",
"description": "Shareable lint configs for Discourse core, plugins, and themes",
"author": "Discourse",
"license": "MIT",
Expand Down Expand Up @@ -29,25 +29,25 @@
"test": "cd ../test && node test.js"
},
"dependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/core": "^7.26.7",
"@babel/eslint-parser": "^7.26.5",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@stylistic/eslint-plugin-js": "^2.11.0",
"ember-template-lint": "^6.0.0",
"eslint": "^9.15.0",
"@stylistic/eslint-plugin-js": "^3.0.1",
"ember-template-lint": "^6.1.0",
"eslint": "^9.19.0",
"eslint-plugin-decorator-position": "^6.0.0",
"eslint-plugin-ember": "^12.3.3",
"eslint-plugin-qunit": "^8.1.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-class-members": "^1.21.0",
"globals": "^15.12.0",
"globals": "^15.14.0",
"prettier": "^2.8.8",
"prettier-plugin-ember-template-tag": "^0.3.2",
"typescript": "^5.7.2"
"typescript": "^5.7.3"
},
"peerDependencies": {
"ember-template-lint": "6.0.0",
"eslint": "^9.15.0",
"ember-template-lint": "6.1.0",
"eslint": "9.19.0",
"prettier": "2.8.8"
}
}
2 changes: 1 addition & 1 deletion lint-configs/template-lint-rules/no-implicit-this.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const ARGLESS_DEFAULT_BLUEPRINT = [

export default class NoImplicitThis extends Rule {
parseConfig(config) {
if (config === false || config === undefined || !this.isStrictMode) {
if (config === false || config === undefined || this.isStrictMode) {
return false;
}

Expand Down
Loading

0 comments on commit dafa937

Please sign in to comment.