mirror of
https://github.com/stoatchat/javascript-client-sdk.git
synced 2026-07-18 16:34:27 -04:00
7cdf5b1bce
* fix: linter fix to make pr checks pass This commit was made without the use of generative AI. Signed-off-by: Jacob Schlecht <dadadah@echoha.us> * fix: add missing eslint library This commit was made without the use of generative AI. Signed-off-by: Jacob Schlecht <dadadah@echoha.us> --------- Signed-off-by: Jacob Schlecht <dadadah@echoha.us>
25 lines
579 B
JavaScript
25 lines
579 B
JavaScript
import eslint from "@eslint/js";
|
|
import prettier from "eslint-plugin-prettier/recommended";
|
|
import solid from "eslint-plugin-solid/configs/typescript";
|
|
import { defineConfig } from "eslint/config";
|
|
import tseslint from "typescript-eslint";
|
|
|
|
export default defineConfig([
|
|
eslint.configs.recommended,
|
|
tseslint.configs.recommended,
|
|
solid,
|
|
prettier,
|
|
{
|
|
rules: {
|
|
"@typescript-eslint/no-unused-vars": [
|
|
"warn",
|
|
{
|
|
caughtErrors: "all",
|
|
varsIgnorePattern: "^_",
|
|
argsIgnorePattern: "^_",
|
|
},
|
|
],
|
|
},
|
|
},
|
|
]);
|