Skip to content

Commit

Permalink
Add sort-imports eslint rule and nestjs-pino logger
Browse files Browse the repository at this point in the history
  • Loading branch information
youngkiu committed Jan 28, 2023
1 parent 7095058 commit be1914f
Show file tree
Hide file tree
Showing 14 changed files with 750 additions and 46 deletions.
8 changes: 8 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,13 @@ module.exports = {
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 'off',
// https://eslint.org/docs/latest/rules/sort-imports
"sort-imports": ["error", {
"ignoreCase": false,
"ignoreDeclarationSort": false,
"ignoreMemberSort": false,
"memberSyntaxSortOrder": ["none", "all", "multiple", "single"],
"allowSeparatedGroups": false
}],
},
};
Loading

0 comments on commit be1914f

Please sign in to comment.