@toptal/davinci-syntax 17.1.0 → 17.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Change Log
2
2
 
3
+ ## 17.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1703](https://github.com/toptal/davinci/pull/1703) [`40327d79`](https://github.com/toptal/davinci/commit/40327d793141fac2458e56ed3b579ac2d78fe51d) Thanks [@augustobmoura](https://github.com/augustobmoura)! - ---
8
+
9
+ - add pattern `*.cy.{ts,js}{,x}` for cypress tests in eslint rules
10
+
3
11
  ## 17.1.0
4
12
 
5
13
  ### Minor Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toptal/davinci-syntax",
3
- "version": "17.1.0",
3
+ "version": "17.1.1",
4
4
  "description": "Lint and prettier support",
5
5
  "publishConfig": {
6
6
  "access": "public"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toptal/davinci-syntax",
3
- "version": "17.1.0",
3
+ "version": "17.1.1",
4
4
  "description": "Lint and prettier support",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -353,6 +353,7 @@ module.exports = {
353
353
  '**/test.*',
354
354
  '**/*.test.*',
355
355
  '**/*.pact.*',
356
+ '**/*.cy.{ts,js}{,x}',
356
357
  '**/cypress/integration/**/*',
357
358
  '**/cypress/support/mockScalars.ts',
358
359
  ],
@@ -372,7 +373,11 @@ module.exports = {
372
373
  // Cypress test files
373
374
  {
374
375
  ...(jestExists && { extends: ['plugin:jest/recommended'] }),
375
- files: ['**/cypress/**/spec.ts', '**/cypress/**/*.spec.ts'],
376
+ files: [
377
+ '**/cypress/**/spec.ts',
378
+ '**/*.cy.{ts,js}{,x}',
379
+ '**/cypress/**/*.spec.ts',
380
+ ],
376
381
  rules: {
377
382
  'jest/expect-expect': 'off',
378
383
  'jest/valid-expect': 'off',