Skip to content

Commit

Permalink
V7.7.0 (#1127)
Browse files Browse the repository at this point in the history
* chore: update gems

* chore: update npm deps

* v7.7.0

* v8.0.0
  • Loading branch information
ninoseki authored Nov 12, 2024
1 parent 5537a3e commit 83f6861
Show file tree
Hide file tree
Showing 7 changed files with 349 additions and 296 deletions.
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

0 comments on commit 83f6861

Please sign in to comment.