2022-11-11 18:15:33 +08:00
|
|
|
{
|
2024-06-22 21:59:12 +08:00
|
|
|
"files": {
|
|
|
|
"ignore": [
|
|
|
|
".dumi/tmp*",
|
|
|
|
".dumi/scripts/clarity.js",
|
|
|
|
"dist/*",
|
|
|
|
"es/**/*",
|
|
|
|
"lib/**/*",
|
|
|
|
"_site/**/*",
|
|
|
|
"node_modules",
|
|
|
|
"server",
|
2024-08-27 09:55:59 +08:00
|
|
|
"scripts/previewEditor/**/*",
|
|
|
|
"package.json"
|
2024-06-22 21:59:12 +08:00
|
|
|
]
|
|
|
|
},
|
2022-11-11 18:15:33 +08:00
|
|
|
"formatter": {
|
|
|
|
"enabled": true,
|
|
|
|
"indentStyle": "space",
|
|
|
|
"lineWidth": 100,
|
2024-05-20 16:46:59 +08:00
|
|
|
"indentWidth": 2
|
2022-11-11 18:15:33 +08:00
|
|
|
},
|
|
|
|
"javascript": {
|
|
|
|
"formatter": {
|
|
|
|
"quoteStyle": "single"
|
|
|
|
}
|
2024-06-22 21:59:12 +08:00
|
|
|
},
|
|
|
|
"organizeImports": {
|
|
|
|
"enabled": false
|
|
|
|
},
|
|
|
|
"linter": {
|
|
|
|
"rules": {
|
|
|
|
"style": {
|
|
|
|
"useImportType": "off",
|
|
|
|
"useNumberNamespace": "off",
|
|
|
|
"useNodejsImportProtocol": "off",
|
|
|
|
"noNonNullAssertion": "off",
|
|
|
|
"noUnusedTemplateLiteral": "off"
|
|
|
|
},
|
|
|
|
"complexity": {
|
|
|
|
"noUselessTypeConstraint": "off",
|
|
|
|
"noForEach": "off"
|
|
|
|
},
|
|
|
|
"correctness": {
|
|
|
|
"useExhaustiveDependencies": "off"
|
|
|
|
},
|
|
|
|
"suspicious": {
|
|
|
|
"noGlobalIsNan": "off",
|
|
|
|
"noGlobalIsFinite": "off",
|
|
|
|
"noExplicitAny": "off",
|
|
|
|
"noArrayIndexKey": "off",
|
|
|
|
"noConfusingVoidType": "off",
|
|
|
|
"noThenProperty": "off"
|
|
|
|
},
|
|
|
|
"performance": {
|
|
|
|
"noDelete": "off",
|
|
|
|
"noAccumulatingSpread": "off"
|
|
|
|
},
|
|
|
|
"a11y": {
|
|
|
|
"useKeyWithClickEvents": "off"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"overrides": [
|
|
|
|
{
|
|
|
|
"include": ["**/*.test.ts", "**/*.test.tsx", "tests/**/*", "scripts/**/*", ".dumi/**/*"],
|
|
|
|
"linter": {
|
|
|
|
"rules": {
|
|
|
|
"style": {
|
|
|
|
"noParameterAssign": "off"
|
|
|
|
},
|
|
|
|
"suspicious": {
|
|
|
|
"noThenProperty": "off",
|
|
|
|
"noImplicitAnyLet": "off"
|
|
|
|
},
|
|
|
|
"complexity": {
|
|
|
|
"noUselessFragments": "off"
|
|
|
|
},
|
|
|
|
"a11y": {
|
|
|
|
"useValidAnchor": "off",
|
|
|
|
"useAnchorContent": "off",
|
|
|
|
"useKeyWithClickEvents": "off"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"include": ["components/*/demo/*"],
|
|
|
|
"linter": {
|
|
|
|
"rules": {
|
|
|
|
"correctness": {
|
|
|
|
"noVoidTypeReturn": "off"
|
|
|
|
},
|
|
|
|
"a11y": {
|
|
|
|
"useValidAnchor": "off",
|
|
|
|
"useAnchorContent": "off",
|
|
|
|
"useKeyWithClickEvents": "off"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2022-11-11 18:15:33 +08:00
|
|
|
}
|