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

V7.7.0 #1127

Merged
merged 4 commits into from
Nov 12, 2024
Merged

V7.7.0 #1127

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
6 changes: 3 additions & 3 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [3.1, 3.2, 3.3]
ruby-version: [3.2, 3.3]
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
- 5432:5432
strategy:
matrix:
ruby-version: [3.1, 3.2, 3.3]
ruby-version: [3.2, 3.3]
steps:
- uses: actions/checkout@v4
- name: Install dependencies
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
--health-retries=3
strategy:
matrix:
ruby-version: [3.1, 3.2, 3.3]
ruby-version: [3.2, 3.3]
steps:
- uses: actions/checkout@v4
- name: Install dependencies
Expand Down
8 changes: 5 additions & 3 deletions frontend/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
// @ts-check
import pluginVitest from "@vitest/eslint-plugin"
import skipFormatting from "@vue/eslint-config-prettier/skip-formatting"
import vueTsEslintConfig from "@vue/eslint-config-typescript"
import simpleImportSort from "eslint-plugin-simple-import-sort"
import pluginVue from "eslint-plugin-vue"
import tseslint from "typescript-eslint"


const mode = process.env.NODE_ENV === "production" ? "error" : "warn"

export default [
export default tseslint.config(
{
name: "app/files-to-lint",
files: ["**/*.{ts,mts,tsx,vue}"]
Expand All @@ -22,6 +23,7 @@ export default [
...pluginVitest.configs.recommended,
files: ["src/**/__tests__/*"]
},
// @ts-expect-error there is not type definition
skipFormatting,
{
plugins: {
Expand All @@ -34,4 +36,4 @@ export default [
"no-debugger": mode
}
}
]
)
Loading