10 lines
232 B
JavaScript
10 lines
232 B
JavaScript
![]() |
import eslint from "@eslint/js";
|
||
|
import tseslint from "typescript-eslint";
|
||
|
|
||
|
export default tseslint.config(eslint.configs.recommended, ...tseslint.configs.recommended, {
|
||
|
rules: {
|
||
|
semi: "error",
|
||
|
"prefer-const": "error",
|
||
|
},
|
||
|
});
|