Skip to content

Commit

Permalink
chore: lint after rebase
Browse files Browse the repository at this point in the history
Signed-off-by: Dirk de Visser <[email protected]>
  • Loading branch information
dirkdev98 committed Mar 6, 2024
1 parent e4a949d commit 7360e83
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 34 deletions.
8 changes: 4 additions & 4 deletions apps/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
"test": "node --test"
},
"dependencies": {
"@fastify/helmet": "^11.1.1",
"@fastify/multipart": "^8.1.0",
"@fastify/helmet": "^11.1.1",
"@fastify/multipart": "^8.1.0",
"close-with-grace": "^1.2.0",
"dotenv": "^16.4.4",
"fastify": "^4.26.0",
"fastify-custom-healthcheck": "^3.1.0",
"fastify-plugin": "^4.5.1",
"fastify-type-provider-zod": "^1.1.9",
"zod": "^3.22.4"
"fastify-type-provider-zod": "^1.1.9",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.11.17",
Expand Down
8 changes: 4 additions & 4 deletions apps/backend/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extends": "@lightbase/tsconfig/node-package.json",
"compilerOptions": {
"outDir": "dist",
}
"extends": "@lightbase/tsconfig/node-package.json",
"compilerOptions": {
"outDir": "dist"
}
}
14 changes: 7 additions & 7 deletions packages/eslint-config/src/markdown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ import markdown from "eslint-plugin-markdown";
* Allows parsing of markdown files, adding code blocks as virtual files.
*/
export function markdownConfig(): Linter.FlatConfig[] {
return [
{
plugins: {
markdown,
},
},
];
return [
{
plugins: {
markdown,
},
},
];
}
4 changes: 2 additions & 2 deletions packages/tsconfig/node-backend.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
"resolveJsonModule": true,
"moduleDetection": "force",
"isolatedModules": true,
"forceConsistentCasingInFileNames": true,
"forceConsistentCasingInFileNames": true,

"strict": true,
"strict": true,
"noUncheckedIndexedAccess": true,

"moduleResolution": "NodeNext",
Expand Down
2 changes: 1 addition & 1 deletion packages/tsconfig/node-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"resolveJsonModule": true,
"moduleDetection": "force",
"isolatedModules": true,
"forceConsistentCasingInFileNames": true,
"forceConsistentCasingInFileNames": true,

"strict": true,
"noUncheckedIndexedAccess": true,
Expand Down
30 changes: 14 additions & 16 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,18 @@
// Only used to check JS files
"noEmit": true,

// Disable monorepo support here
"declarationMap": false,
"composite": false,
"declaration": false
},
"files": [
"./eslint.config.js"
],
"references": [
{
"path": "./packages/eslint-config",
},
{
"path": "./apps/backend",
},
]
// Disable monorepo support here
"declarationMap": false,
"composite": false,
"declaration": false
},
"files": ["./eslint.config.js"],
"references": [
{
"path": "./packages/eslint-config"
},
{
"path": "./apps/backend"
}
]
}

0 comments on commit 7360e83

Please sign in to comment.