We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c87f757 commit 1093f0eCopy full SHA for 1093f0e
docs/rules/no-cross-feature-imports.md
@@ -17,7 +17,7 @@ This rule prevents importing files from deep inside feature directories. Instead
17
18
### ❌ Incorrect
19
20
-```javascript
+````javascript
21
// Importing directly from inside a feature
22
import UserList from '@/features/user/components/UserList.vue'
23
import userService from '@/features/user/services/userService.js'
@@ -40,7 +40,7 @@ import userService from './services/userService.js'
40
41
// Importing from allowed patterns
42
import { UserTypes } from '@/features/user/types.ts'
43
-```
+````
44
45
## Options
46
@@ -74,7 +74,7 @@ Notes:
74
75
## Project Structure
76
77
+```text
78
src/
79
├── features/
80
│ ├── user/
0 commit comments