Skip to content

Commit 57e9da2

Browse files
committed
updated deps / elint
1 parent a409636 commit 57e9da2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+1474
-2219
lines changed

eslint.config.mjs

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
// @ts-check
2+
3+
import eslint from "@eslint/js";
4+
import tseslint from "typescript-eslint";
5+
6+
export default tseslint.config(
7+
{
8+
ignores: ["dist/*.js", "coverage", "modules", "rollup.config.js"],
9+
},
10+
eslint.configs.recommended,
11+
...tseslint.configs.recommended,
12+
{
13+
rules: {
14+
"@typescript-eslint/no-unused-vars": [
15+
1,
16+
{
17+
argsIgnorePattern: "^_",
18+
},
19+
],
20+
},
21+
},
22+
);
23+
24+
// module.exports = [
25+
// {
26+
// languageOptions: {
27+
// parser: "@typescript-eslint/parser",
28+
// },
29+
//
30+
// ignorePatterns: ["*.js", "dist", "coverage"],
31+
// rules: {
32+
// "import/first": "warn" , /// all imports before any line of code
33+
// "import/newline-after-import": "warn",
34+
// "import/no-duplicates": "warn", /Forbid repeated import of the same module in multiple places.
35+
//
36+
// ];
37+
// "eslint-config-prettier": "^9.1.0",
38+
// "eslint-plugin-import": "^2.29.1",
39+
// "eslint-plugin-prettier": "^5.1.3",
40+
// "eslint-plugin-simple-import-sort": "^12.1.0",
41+
// "@typescript-eslint/eslint-plugin": "^7.13.1",
42+
// "@typescript-eslint/parser": "^7.13.1",
43+
// "eslint": "^9.5.0",

modules/scripts

0 commit comments

Comments
 (0)