Skip to content

Commit aefc1c1

Browse files
committed
chore: update eslint devDep and semantic-release; resume using :has() selector in tests given ESLint 7.20.0
1 parent 547a1c9 commit aefc1c1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10709,7 +10709,7 @@ export class MyComponentComponent {
1070910709
@Input()
1071010710
public value = new EventEmitter();
1071110711
}
10712-
// Options: [{"contexts":["ClassProperty > Decorator[expression.callee.name=\"Input\"]"]}]
10712+
// Options: [{"contexts":["ClassProperty:has(Decorator[expression.callee.name=\"Input\"])"]}]
1071310713
// Message: Missing JSDoc comment.
1071410714
````
1071510715

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"babel-plugin-istanbul": "^6.0.0",
3030
"chai": "^4.3.0",
3131
"cross-env": "^7.0.3",
32-
"eslint": "7.19.0",
32+
"eslint": "7.20.0",
3333
"eslint-config-canonical": "^25.8.17",
3434
"gitdown": "^3.1.3",
3535
"glob": "^7.1.6",
@@ -38,7 +38,7 @@
3838
"mocha": "^8.3.0",
3939
"nyc": "^15.1.0",
4040
"rimraf": "^3.0.2",
41-
"semantic-release": "^17.3.8",
41+
"semantic-release": "^17.3.9",
4242
"typescript": "^4.1.5"
4343
},
4444
"engines": {

test/rules/assertions/requireJsdoc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2942,7 +2942,7 @@ function quux (foo) {
29422942
],
29432943
options: [{
29442944
contexts: [
2945-
'ClassProperty > Decorator[expression.callee.name="Input"]',
2945+
'ClassProperty:has(Decorator[expression.callee.name="Input"])',
29462946
],
29472947
}],
29482948
output: `

0 commit comments

Comments
 (0)