89 lines
2.5 KiB
JavaScript
89 lines
2.5 KiB
JavaScript
|
|
// @ts-check
|
|||
|
|
import eslint from '@eslint/js';
|
|||
|
|
import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended';
|
|||
|
|
import globals from 'globals';
|
|||
|
|
import tseslint from 'typescript-eslint';
|
|||
|
|
|
|||
|
|
export default tseslint.config(
|
|||
|
|
{
|
|||
|
|
ignores: ['eslint.config.mjs'],
|
|||
|
|
},
|
|||
|
|
eslint.configs.recommended,
|
|||
|
|
...tseslint.configs.recommendedTypeChecked,
|
|||
|
|
eslintPluginPrettierRecommended,
|
|||
|
|
{
|
|||
|
|
languageOptions: {
|
|||
|
|
globals: {
|
|||
|
|
...globals.node,
|
|||
|
|
...globals.jest,
|
|||
|
|
},
|
|||
|
|
sourceType: 'commonjs',
|
|||
|
|
parserOptions: {
|
|||
|
|
projectService: true,
|
|||
|
|
tsconfigRootDir: import.meta.dirname,
|
|||
|
|
},
|
|||
|
|
},
|
|||
|
|
},
|
|||
|
|
{
|
|||
|
|
rules: {
|
|||
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|||
|
|
'@typescript-eslint/no-floating-promises': 'warn',
|
|||
|
|
'@typescript-eslint/no-unsafe-argument': 'warn',
|
|||
|
|
// 禁止任何形式的路径别名导入,统一使用相对路径
|
|||
|
|
'no-restricted-imports': [
|
|||
|
|
'error',
|
|||
|
|
{
|
|||
|
|
patterns: [
|
|||
|
|
{
|
|||
|
|
group: ['@*', 'src/*', '/*'],
|
|||
|
|
message:
|
|||
|
|
'禁止使用路径别名与根路径导入,请使用相对路径(../ 或 ./)按照分层规范访问公开 API',
|
|||
|
|
},
|
|||
|
|
],
|
|||
|
|
},
|
|||
|
|
],
|
|||
|
|
},
|
|||
|
|
},
|
|||
|
|
// 分层导入约束:Common、Core、App 层
|
|||
|
|
{
|
|||
|
|
files: ['src/common/**/*.{ts,tsx}'],
|
|||
|
|
rules: {
|
|||
|
|
'no-restricted-imports': [
|
|||
|
|
'error',
|
|||
|
|
{
|
|||
|
|
patterns: [
|
|||
|
|
{ group: ['@app/*', 'src/app/*', '@vendor/*', 'src/vendor/*'], message: 'Common 层禁止依赖 App/Vendor,请依赖 Core 抽象' },
|
|||
|
|
{ group: ['**/*/internal/**'], message: '禁止依赖其他域内部实现,请通过其公共 API' },
|
|||
|
|
],
|
|||
|
|
},
|
|||
|
|
],
|
|||
|
|
},
|
|||
|
|
},
|
|||
|
|
{
|
|||
|
|
files: ['src/core/**/*.{ts,tsx}'],
|
|||
|
|
rules: {
|
|||
|
|
'no-restricted-imports': [
|
|||
|
|
'error',
|
|||
|
|
{
|
|||
|
|
patterns: [
|
|||
|
|
{ group: ['@app/*', 'src/app/*', '@common/*', 'src/common/*', '@vendor/*', 'src/vendor/*'], message: 'Core 层禁止依赖上层与 Vendor 实现' },
|
|||
|
|
{ group: ['**/*/internal/**'], message: '禁止依赖其他域内部实现,请通过其公共 API' },
|
|||
|
|
],
|
|||
|
|
},
|
|||
|
|
],
|
|||
|
|
},
|
|||
|
|
},
|
|||
|
|
{
|
|||
|
|
files: ['src/app/**/*.{ts,tsx}'],
|
|||
|
|
rules: {
|
|||
|
|
'no-restricted-imports': [
|
|||
|
|
'error',
|
|||
|
|
{
|
|||
|
|
patterns: [
|
|||
|
|
{ group: ['**/*/internal/**'], message: '禁止依赖其他域内部实现,请通过其公共 API' },
|
|||
|
|
],
|
|||
|
|
},
|
|||
|
|
],
|
|||
|
|
},
|
|||
|
|
},
|
|||
|
|
);
|