mirror of
https://github.com/zoriya/astal.git
synced 2026-06-01 01:38:08 +00:00
0738194780
starting point of the monorepo
19 lines
459 B
TypeScript
19 lines
459 B
TypeScript
import eslint from "@eslint/js"
|
|
import tseslint from "typescript-eslint"
|
|
import stylistic from "@stylistic/eslint-plugin"
|
|
|
|
export default tseslint.config({
|
|
extends: [
|
|
eslint.configs.recommended,
|
|
...tseslint.configs.recommended,
|
|
stylistic.configs.customize({
|
|
semi: false,
|
|
indent: 4,
|
|
quotes: "double",
|
|
}),
|
|
],
|
|
rules: {
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
},
|
|
})
|