Skip to content

Commit 3a47109

Browse files
committed
linter
1 parent 2fb9361 commit 3a47109

File tree

89 files changed

+2943
-3138
lines changed

Some content is hidden

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

89 files changed

+2943
-3138
lines changed

.eslintrc.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,17 @@
1616
"ecmaVersion": "latest",
1717
"sourceType": "module"
1818
},
19-
"plugins": ["@typescript-eslint", "simple-import-sort", "unused-imports"],
19+
"plugins": [
20+
"@typescript-eslint",
21+
"simple-import-sort",
22+
"unused-imports"
23+
],
2024
"rules": {
25+
"indent": [
26+
"error",
27+
2
28+
],
29+
"quotes": ["error", "single", { "avoidEscape": true, "allowTemplateLiterals": true }],
2130
"simple-import-sort/imports": 1,
2231
"simple-import-sort/exports": 1,
2332
"unused-imports/no-unused-imports": 1,
@@ -36,4 +45,4 @@
3645
"no-implicit-globals": 0,
3746
"@typescript-eslint/no-unsafe-declaration-merging": 0
3847
}
39-
}
48+
}

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"clean": "lerna run clean",
1010
"build": "lerna run build --stream",
1111
"test": "lerna run test --stream",
12+
"lint": "lerna run lint --parallel",
1213
"symlink": "symlink-workspace --logLevel error",
1314
"postinstall": "yarn symlink"
1415
},
@@ -17,12 +18,12 @@
1718
"@types/jest": "^29.5.11",
1819
"@types/mkdirp": "1.0.2",
1920
"@types/node": "^20.12.7",
20-
"@typescript-eslint/eslint-plugin": "^6.18.1",
21-
"@typescript-eslint/parser": "^6.18.1",
21+
"@typescript-eslint/eslint-plugin": "^7.10.0",
22+
"@typescript-eslint/parser": "^7.10.0",
2223
"copyfiles": "^2.4.1",
2324
"eslint-config-prettier": "^9.1.0",
24-
"eslint-plugin-simple-import-sort": "^10.0.0",
25-
"eslint-plugin-unused-imports": "^3.0.0",
25+
"eslint-plugin-simple-import-sort": "^12.1.0",
26+
"eslint-plugin-unused-imports": "^4.0.0",
2627
"eslint": "^8.56.0",
2728
"glob": "8.0.3",
2829
"jest-in-case": "^1.0.2",

packages/ast/.eslintrc.js

Lines changed: 0 additions & 71 deletions
This file was deleted.

0 commit comments

Comments
 (0)