diff options
author | Aylur <[email protected]> | 2024-07-20 14:05:47 +0200 |
---|---|---|
committer | Aylur <[email protected]> | 2024-07-20 14:05:47 +0200 |
commit | 1c9377ec696c1f8269bf30a7af1e4a9566d55625 (patch) | |
tree | 2a9a7e445b8e999f3fdac326d2386459d26868da /gjs/eslint.config.mjs | |
parent | a1f9272f4576fd3c366581464223e08a35ccf99f (diff) |
update eslint, ts-for-gir
Diffstat (limited to 'gjs/eslint.config.mjs')
-rw-r--r-- | gjs/eslint.config.mjs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gjs/eslint.config.mjs b/gjs/eslint.config.mjs new file mode 100644 index 0000000..99dad7d --- /dev/null +++ b/gjs/eslint.config.mjs @@ -0,0 +1,18 @@ +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", + }, +}) |