File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ module.exports = {
12
12
"plugin:import/recommended" ,
13
13
"plugin:import/typescript" ,
14
14
"plugin:vue/vue3-essential" ,
15
+ // When this is active eslint complains.
15
16
// "plugin:@typescript-eslint/recommended",
16
17
"@vue/eslint-config-prettier" ,
17
18
"@vue/eslint-config-typescript" ,
@@ -45,6 +46,12 @@ module.exports = {
45
46
from : "apps/backend/" ,
46
47
message : "Frontend should not import from backend. Move code to libs and import from there instead." ,
47
48
} ,
49
+
50
+ {
51
+ target : "apps/frontend/**/components/*" ,
52
+ from : "**/stores/*" ,
53
+ message : "Components should not import stores." ,
54
+ } ,
48
55
] ,
49
56
} ,
50
57
] ,
Original file line number Diff line number Diff line change 1
1
{
2
- "files" : [],
3
2
"compilerOptions" : {
4
3
"strict" : true ,
5
4
"forceConsistentCasingInFileNames" : true ,
You can’t perform that action at this time.
0 commit comments