Skip to content

Commit

Permalink
Fix typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
sbruens committed May 21, 2024
1 parent c9f9a46 commit 398a7ae
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,34 +28,34 @@
// Similar to above but for src/www/model, but you can use files from both the
// src/www/model and src/www/infrastructure paths.
{
"target": "./client/src/wwwmodel",
"target": "./client/src/www/model",
"from": ".",
"except": ["./client/src/wwwmodel", "./src/infrastructure", "./node_modules"]
"except": ["./client/src/www/model", "./src/infrastructure", "./node_modules"]
},
// Prevents the internals of the outline_server_repository from being used publicly in the app.
{
"target": "./client/src/wwwapp/*.ts",
"from": "./client/src/wwwapp/outline_server_repository/server.ts"
"target": "./client/src/www/app/*.ts",
"from": "./client/src/www/app/outline_server_repository/server.ts"
},
{
"target": "./client/src/wwwapp/*.ts",
"from": "./client/src/wwwapp/outline_server_repository/access_key_serialization.ts"
"target": "./client/src/www/app/*.ts",
"from": "./client/src/www/app/outline_server_repository/access_key_serialization.ts"
},
{
"target": "./client/src/wwwviews",
"from": "./client/src/wwwmodel"
"target": "./client/src/www/views",
"from": "./client/src/www/model"
},
{
"target": "./client/src/wwwui_components",
"from": "./client/src/wwwmodel"
"target": "./client/src/www/ui_components",
"from": "./client/src/www/model"
},
{
"target": "./client/src/wwwviews",
"from": "./client/src/wwwapp"
"target": "./client/src/www/views",
"from": "./client/src/www/app"
},
{
"target": "./client/src/wwwui_components",
"from": "./client/src/wwwapp"
"target": "./client/src/www/ui_components",
"from": "./client/src/www/app"
}
]
}
Expand Down Expand Up @@ -117,7 +117,7 @@
},
// No need to check browser compatibility for electron files
{
"files": ["./client/src/wwwapp/electron_main.ts"],
"files": ["./client/src/www/app/electron_main.ts"],
"rules": {
"compat/compat": "off"
}
Expand Down

0 comments on commit 398a7ae

Please sign in to comment.