Skip to content

Commit

Permalink
feat: pump all packages
Browse files Browse the repository at this point in the history
  • Loading branch information
lednhatkhanh committed Sep 5, 2024
1 parent 0a323b7 commit a344445
Show file tree
Hide file tree
Showing 6 changed files with 2,046 additions and 2,054 deletions.
36 changes: 0 additions & 36 deletions .eslintrc.cjs

This file was deleted.

47 changes: 47 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
// @ts-check

import { includeIgnoreFile } from "@eslint/compat";
import path from "node:path";
import { fileURLToPath } from "node:url";
import eslint from "@eslint/js";
import simpleImportSort from "eslint-plugin-simple-import-sort";
import eslintPluginUnicorn from "eslint-plugin-unicorn";
import unusedImports from "eslint-plugin-unused-imports";
import tseslint from "typescript-eslint";

const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const gitignorePath = path.resolve(__dirname, ".gitignore");

export default tseslint.config(
includeIgnoreFile(gitignorePath),
eslint.configs.recommended,
...tseslint.configs.recommended,
{
plugins: {
"unused-imports": unusedImports,
"simple-import-sort": simpleImportSort,
unicorn: eslintPluginUnicorn,
},
rules: {
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error",
"no-unused-vars": "off", // or "@typescript-eslint/no-unused-vars": "off",
"unused-imports/no-unused-imports": "error",
"unused-imports/no-unused-vars": [
"warn",
{
vars: "all",
varsIgnorePattern: "^_",
args: "after-used",
argsIgnorePattern: "^_",
},
],
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-namespace": "off",
"unicorn/better-regex": "error",
"unicorn/no-array-for-each": "error",
"unicorn/prefer-regexp-test": "error",
},
}
);
Loading

0 comments on commit a344445

Please sign in to comment.