Skip to content
This repository has been archived by the owner on Apr 8, 2021. It is now read-only.

Commit

Permalink
Update packages
Browse files Browse the repository at this point in the history
This includes:
* whole nestjs framework (that now uses eslint)
  * it was created with nestjs-cli v7.1.5
* swagger with migration to v4
  • Loading branch information
eckon committed May 12, 2020
1 parent 2a5682b commit fa254c7
Show file tree
Hide file tree
Showing 14 changed files with 2,235 additions and 1,490 deletions.
24 changes: 24 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
sourceType: 'module',
},
plugins: ['@typescript-eslint/eslint-plugin'],
extends: [
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'prettier',
'prettier/@typescript-eslint',
],
root: true,
env: {
node: true,
jest: true,
},
rules: {
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/no-explicit-any': 'off',
},
};
Loading

0 comments on commit fa254c7

Please sign in to comment.