@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 +8 -0
- package/dist-package/package.json +1 -1
- package/package.json +1 -1
- package/src/configs/.eslintrc.js +6 -1
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
|
package/package.json
CHANGED
package/src/configs/.eslintrc.js
CHANGED
|
@@ -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: [
|
|
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',
|