diff --git a/demo/test/snapshots/linting-config.test.js.md b/demo/test/snapshots/linting-config.test.js.md index 79491f6..9cf7488 100644 --- a/demo/test/snapshots/linting-config.test.js.md +++ b/demo/test/snapshots/linting-config.test.js.md @@ -10,6 +10,7 @@ Generated by [AVA](https://ava.li). `{␊ "env": {␊ + "cypress/globals": true,␊ "jest/globals": true,␊ "es2021": true,␊ "es6": true,␊ @@ -43,6 +44,7 @@ Generated by [AVA](https://ava.li). "@fs/zion",␊ "jest",␊ "you-dont-need-lodash-underscore",␊ + "cypress",␊ "prettier",␊ "test-selectors",␊ "sonarjs",␊ @@ -292,6 +294,18 @@ Generated by [AVA](https://ava.li). 0,␊ "multi-line"␊ ],␊ + "cypress/no-assigning-return-values": [␊ + "error"␊ + ],␊ + "cypress/no-async-tests": [␊ + "error"␊ + ],␊ + "cypress/no-unnecessary-waiting": [␊ + "error"␊ + ],␊ + "cypress/unsafe-to-chain-command": [␊ + "error"␊ + ],␊ "default-case": [␊ "error",␊ {␊ @@ -621,6 +635,7 @@ Generated by [AVA](https://ava.li). ]␊ ],␊ "distinctGroup": true,␊ + "named": false,␊ "warnOnUnassignedImports": false␊ }␊ ],␊ diff --git a/demo/test/snapshots/linting-config.test.js.snap b/demo/test/snapshots/linting-config.test.js.snap index d574601..35ea9a3 100644 Binary files a/demo/test/snapshots/linting-config.test.js.snap and b/demo/test/snapshots/linting-config.test.js.snap differ diff --git a/es6.js b/es6.js index b684d77..160f635 100644 --- a/es6.js +++ b/es6.js @@ -14,6 +14,7 @@ module.exports = { '@fs/eslint-config-frontier-react/jest', '@fs/eslint-config-frontier-react/dont-need-lodash', '@fs/eslint-config-frontier-react/typescript', + '@fs/eslint-config-frontier-react/cypress', '@fs/eslint-config-frontier-react/prettierSetup', // Always have prettier last so it can override format rules in the extends before it ], plugins: [ diff --git a/package.json b/package.json index 472e067..e47c091 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@fs/eslint-config-tree", - "version": "6.1.1", + "version": "6.2.0", "description": "Shared Tree configuration that contains overrides and enhancements on top of the base frontier configuration.", "main": "index.js", "repository": { @@ -28,8 +28,8 @@ "!.*" ], "dependencies": { - "@babel/eslint-parser": "^7.25.1", - "@fs/eslint-config-frontier-react": "^11.2.0", + "@babel/eslint-parser": "^7.26.10", + "@fs/eslint-config-frontier-react": "^11.2.2", "eslint": "^8.57.1", "eslint-plugin-bestpractices": "github:skye2k2/eslint-plugin-bestpractices", "eslint-plugin-deprecate": "^0.7.0", @@ -42,7 +42,7 @@ "@fs/npm-publisher": "^1.6.0", "ava": "^2.4.0", "file-manager-js": "^3.1.6", - "husky": "^9.1.6" + "husky": "^9.1.7" }, "scripts": { "lint": "eslint demo",