Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump the npm-dependencies group across 2 directories with 12 updates #187

Merged
merged 2 commits into from
Jul 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
91 changes: 0 additions & 91 deletions integration-tests/.eslintrc.cjs

This file was deleted.

93 changes: 93 additions & 0 deletions integration-tests/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
import { FlatCompat } from "@eslint/eslintrc"
import js from "@eslint/js"
import noOnlyTests from "eslint-plugin-no-only-tests"
import path from "node:path"
import { fileURLToPath } from "node:url"

const __filename = fileURLToPath(import.meta.url)
const __dirname = path.dirname(__filename)
const compat = new FlatCompat({
baseDirectory: __dirname,
recommendedConfig: js.configs.recommended,
allConfig: js.configs.all,
})

export default [
{
ignores: [
"**/vite.config.js",
"**/cypress.config.ts",
"**/test-environment/",
"eslint.config.mjs",
],
},
...compat.extends(
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/strict-type-checked",
"prettier",
),
{
plugins: {
"no-only-tests": noOnlyTests,
},

languageOptions: {
ecmaVersion: "latest",
sourceType: "module",

parserOptions: {
project: [
"tsconfig.json",
"./client/tsconfig.json",
"./cypress/tsconfig.json",
],
},
},

rules: {
"no-only-tests/no-only-tests": "error",

"no-restricted-syntax": [
"error",
{
selector: "TSEnumDeclaration",
message: "Don't declare enums",
},
],

"@typescript-eslint/consistent-type-imports": "error",
"@typescript-eslint/no-import-type-side-effects": "error",
"@typescript-eslint/explicit-module-boundary-types": ["warn"],
"no-shadow": "off",
"@typescript-eslint/no-shadow": ["error"],

"lines-between-class-members": [
"error",
"always",
{
exceptAfterSingleLine: true,
},
],

"no-empty-function": [
"error",
{
allow: ["constructors"],
},
],

"no-return-await": "off",
"@typescript-eslint/return-await": "error",
"no-useless-constructor": "off",

"no-void": [
"error",
{
allowAsStatement: true,
},
],

"@typescript-eslint/no-unused-vars": "off",
},
},
]
18 changes: 9 additions & 9 deletions integration-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,33 +15,33 @@
},
"devDependencies": {
"@types/express": "4.17.21",
"@types/node": "20.14.8",
"@types/node": "20.14.10",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "7.13.0",
"@typescript-eslint/parser": "7.13.0",
"@typescript-eslint/eslint-plugin": "7.16.0",
"@typescript-eslint/parser": "7.16.0",
"@xterm/addon-attach": "0.11.0",
"@xterm/addon-fit": "0.10.0",
"@xterm/xterm": "5.5.0",
"concurrently": "8.2.2",
"eslint": "8.57.0",
"eslint": "9.6.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-no-only-tests": "3.1.0",
"express": "4.19.2",
"prettier-plugin-organize-imports": "3.2.4",
"prettier-plugin-organize-imports": "4.0.0",
"tsc-watch": "6.2.0",
"typescript": "5.5.2",
"typescript": "5.5.3",
"vite": "^5.3.1"
},
"dependencies": {
"@catppuccin/palette": "1.2.0",
"@types/uuid": "10.0.0",
"@types/winston": "2.4.4",
"cypress": "13.12.0",
"cypress": "13.13.0",
"node-pty": "1.0.0",
"socket.io": "4.7.5",
"socket.io-client": "4.7.5",
"tsx": "4.15.7",
"tsx": "4.16.2",
"wait-on": "7.2.0",
"winston": "3.13.0"
"winston": "3.13.1"
}
}
Loading
Loading