File tree Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 22 "extends": "./node_modules/kcd-scripts/eslint.js",
33 "rules": {
44 "max-lines-per-function": "off",
5- "testing-library/no-dom-import": "off" // We're not using React Testing Library here. We're wrapping DOM Testing Library directly
5+ "testing-library/prefer-screen-queries": "off",
6+ "testing-library/no-dom-import": "off", // We're not using React Testing Library here. We're wrapping DOM Testing Library directly
7+ "@typescript-eslint/no-explicit-any": "off" // let's do better in the future
68 }
79}
Original file line number Diff line number Diff line change 4040 "author" : " Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com)" ,
4141 "license" : " MIT" ,
4242 "dependencies" : {
43- "@babel/runtime" : " ^7.11.2 " ,
44- "@testing-library/dom" : " ^7.22.2 "
43+ "@babel/runtime" : " ^7.12.5 " ,
44+ "@testing-library/dom" : " ^7.26.6 "
4545 },
4646 "devDependencies" : {
47- "cypress" : " ^5.0 .0" ,
48- "dtslint" : " ^3.6.14 " ,
49- "kcd-scripts" : " ^6.2.4 " ,
47+ "cypress" : " ^5.6 .0" ,
48+ "dtslint" : " ^4.0.5 " ,
49+ "kcd-scripts" : " ^7.0.3 " ,
5050 "npm-run-all" : " ^4.1.5" ,
51- "typescript" : " ^4.0.2 "
51+ "typescript" : " ^4.0.5 "
5252 },
5353 "peerDependencies" : {
5454 "cypress" : " ^2.1.0 || ^3.0.0 || ^4.0.0 || ^5.0.0"
Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ export type SelectorMatcherOptions =
2121
2222declare global {
2323 namespace Cypress {
24+ // 🤔 unsure why this Subject is unused, nor what to do with it...
25+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
2426 interface Chainable < Subject = any > {
2527 /**
2628 * dom-testing-library helpers for Cypress
You can’t perform that action at this time.
0 commit comments