mirror of
https://github.com/YuzuZensai/TrollSSH.git
synced 2026-09-13 18:09:02 +00:00
♻️ refactor: migrate to bun and refactor
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
// @ts-check
|
||||
import eslint from "@eslint/js";
|
||||
import tseslint from "typescript-eslint";
|
||||
import eslintConfigPrettier from "eslint-config-prettier";
|
||||
|
||||
export default tseslint.config(
|
||||
eslint.configs.recommended,
|
||||
tseslint.configs.recommended,
|
||||
eslintConfigPrettier,
|
||||
{
|
||||
rules: {
|
||||
"@typescript-eslint/no-unused-vars": [
|
||||
"error",
|
||||
{ argsIgnorePattern: "^_" },
|
||||
],
|
||||
},
|
||||
},
|
||||
{
|
||||
ignores: ["dist/**", "config/**", "node_modules/**"],
|
||||
}
|
||||
);
|
||||
Reference in New Issue
Block a user