Skip to content

Commit 112bbec

Browse files
committed
chore(mf): vendor modern-js-v3 plugin into workspace
1 parent 84938fb commit 112bbec

45 files changed

Lines changed: 4600 additions & 269 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"extends": ["../../.eslintrc.json"],
3+
"ignorePatterns": [
4+
"!**/*",
5+
"**/*.d.ts",
6+
"**/vite.config.*.timestamp*",
7+
"**/vitest.config.*.timestamp*"
8+
],
9+
"overrides": [
10+
{
11+
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
12+
"rules": {
13+
"@typescript-eslint/no-explicit-any": "off",
14+
"@typescript-eslint/ban-ts-comment": "warn",
15+
"@typescript-eslint/no-var-requires": 0,
16+
"@typescript-eslint/no-restricted-imports": [
17+
"error",
18+
{
19+
"paths": [
20+
{
21+
"name": "webpack",
22+
"message": "Please use require(normalizeWebpackPath('webpack')) instead.",
23+
"allowTypeImports": true
24+
}
25+
],
26+
"patterns": [
27+
{
28+
"group": ["webpack/lib/*"],
29+
"message": "Please use require(normalizeWebpackPath('webpack')) instead.",
30+
"allowTypeImports": true
31+
}
32+
]
33+
}
34+
]
35+
}
36+
},
37+
{
38+
"files": ["*.js", "*.jsx"]
39+
}
40+
]
41+
}

0 commit comments

Comments
 (0)