diff --git a/demo/test/snapshots/linting-config.test.js.md b/demo/test/snapshots/linting-config.test.js.md index e303797..d441bed 100644 --- a/demo/test/snapshots/linting-config.test.js.md +++ b/demo/test/snapshots/linting-config.test.js.md @@ -88,6 +88,9 @@ Generated by [AVA](https://ava.li). "@typescript-eslint/keyword-spacing": [␊ "off"␊ ],␊ + "@typescript-eslint/lines-around-comment": [␊ + 0␊ + ],␊ "@typescript-eslint/member-delimiter-style": [␊ "off"␊ ],␊ @@ -512,13 +515,15 @@ Generated by [AVA](https://ava.li). {␊ "devDependencies": [␊ "**/setupTests.[tj]s?(x)",␊ - "**/*.stories.[tj]s?(x)",␊ - "**/*.test.[tj]s?(x)",␊ - "**/*.spec.[tj]s?(x)",␊ + "**/*.{cy,spec,stories,test}.[tj]s?(x)",␊ + ".storybook/**",␊ "**/demo/**",␊ "**/docs/**",␊ - "**/fixtures/**"␊ - ]␊ + "**/fixtures/**",␊ + "scripts/**",␊ + "cypress/**"␊ + ],␊ + "includeTypes": true␊ }␊ ],␊ "import/no-import-module-exports": [␊ @@ -2074,7 +2079,8 @@ Generated by [AVA](https://ava.li). {␊ "printWidth": 120,␊ "singleQuote": true,␊ - "semi": false␊ + "semi": false,␊ + "trailingComma": "es5"␊ }␊ ],␊ "promise/always-return": [␊ @@ -3009,6 +3015,9 @@ Generated by [AVA](https://ava.li). "vue/array-bracket-spacing": [␊ "off"␊ ],␊ + "vue/array-element-newline": [␊ + "off"␊ + ],␊ "vue/arrow-spacing": [␊ "off"␊ ],␊ diff --git a/demo/test/snapshots/linting-config.test.js.snap b/demo/test/snapshots/linting-config.test.js.snap index abc80ea..a1657e9 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/package.json b/package.json index 477993f..a88dd67 100644 --- a/package.json +++ b/package.json @@ -28,9 +28,9 @@ "!.*" ], "dependencies": { - "@babel/eslint-parser": "^7.21.3", + "@babel/eslint-parser": "^7.22.9", "@fs/eslint-config-frontier-react": "^11.0.0-alpha.6", - "eslint": "^8.36.0", + "eslint": "^8.46.0", "eslint-plugin-bestpractices": "github:skye2k2/eslint-plugin-bestpractices", "eslint-plugin-deprecate": "^0.7.0", "eslint-plugin-html": "^7.1.0", @@ -39,7 +39,7 @@ "eslint-plugin-test-selectors": "^2.0.4" }, "devDependencies": { - "@fs/npm-publisher": "^1.5.1", + "@fs/npm-publisher": "^1.5.2", "ava": "^2.4.0", "file-manager-js": "^3.1.6", "husky": "^3.1.0"