Skip to content

Commit

Permalink
chore(eslint): enable stylistic-type-checked linter rule
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbertHernandez committed Nov 23, 2024
1 parent db00512 commit 34b6455
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/strict-type-checked",
"plugin:@typescript-eslint/stylistic-type-checked",
"plugin:prettier/recommended",
"plugin:unicorn/recommended",
"plugin:node/recommended"
Expand Down
2 changes: 1 addition & 1 deletion src/app/config/config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const config = {
server: {
port: process.env.PORT || 3000,
port: process.env.PORT ?? 3000,
},
};

0 comments on commit 34b6455

Please sign in to comment.