1 parent 2cb10a3 commit 740fb8bCopy full SHA for 740fb8b
2 files changed
.github/workflows/ci.yml
@@ -76,7 +76,7 @@ jobs:
76
contracts:
77
name: Smart Contracts (Rust)
78
runs-on: ubuntu-latest
79
- container: rust:1.85
+ container: rust:1.88
80
steps:
81
- name: Checkout code
82
uses: actions/checkout@v4
frontend/eslint.config.mjs
@@ -5,14 +5,18 @@ import nextTs from "eslint-config-next/typescript";
5
const eslintConfig = defineConfig([
6
...nextVitals,
7
...nextTs,
8
- // Override default ignores of eslint-config-next.
9
globalIgnores([
10
- // Default ignores of eslint-config-next:
11
".next/**",
12
"out/**",
13
"build/**",
14
"next-env.d.ts",
15
]),
+ {
+ rules: {
16
+ "@typescript-eslint/no-explicit-any": "warn",
17
+ "react/no-unescaped-entities": "warn",
18
+ },
19
20
]);
21
-export default eslintConfig;
22
+export default eslintConfig;
0 commit comments