Skip to content

Commit 1093f0e

Browse files
committed
fix: correct code block formatting in no-cross-feature-imports documentation
1 parent c87f757 commit 1093f0e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/rules/no-cross-feature-imports.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This rule prevents importing files from deep inside feature directories. Instead
1717

1818
### ❌ Incorrect
1919

20-
```javascript
20+
````javascript
2121
// Importing directly from inside a feature
2222
import UserList from '@/features/user/components/UserList.vue'
2323
import userService from '@/features/user/services/userService.js'
@@ -40,7 +40,7 @@ import userService from './services/userService.js'
4040
4141
// Importing from allowed patterns
4242
import { UserTypes } from '@/features/user/types.ts'
43-
```
43+
````
4444
4545
## Options
4646
@@ -74,7 +74,7 @@ Notes:
7474

7575
## Project Structure
7676

77-
```
77+
```text
7878
src/
7979
├── features/
8080
│ ├── user/

0 commit comments

Comments
 (0)