diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 0000000..0fbd99b --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,25 @@ +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/explicit-module-boundary-types': 'off', + '@typescript-eslint/no-explicit-any': 'off', + }, +}; diff --git a/.gitignore b/.gitignore index cefc641..0fcb15a 100644 --- a/.gitignore +++ b/.gitignore @@ -389,3 +389,4 @@ Temporary Items # Local docker-compose.yml .env +dist diff --git a/README.md b/README.md index 51917cc..82b32cb 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ [linux-image]: https://img.shields.io/travis/nestjs/nest/master.svg?label=linux [linux-url]: https://travis-ci.org/nestjs/nest -
A progressive Node.js framework for building efficient and scalable server-side applications, heavily inspired by Angular.
+A progressive Node.js framework for building efficient and scalable server-side applications.