diff --git a/.eslintrc.js b/.eslintrc.js index c2255aea6..0a7ec6437 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -17,6 +17,7 @@ const appConfig = { 'prettier', 'plugin:@angular-eslint/recommended', 'plugin:promise/recommended', + 'plugin:jsdoc/recommended', ], parser: '@typescript-eslint/parser', parserOptions: { @@ -199,6 +200,10 @@ const appConfig = { 'id-match': 'error', 'jsdoc/check-alignment': 'error', 'jsdoc/newline-after-description': 'error', + 'jsdoc/require-param-type': 'off', + 'jsdoc/require-returns-type': 'off', + 'jsdoc/require-param': 'off', + 'jsdoc/check-values': 'off', 'linebreak-style': [ 'error', 'unix', diff --git a/package.json b/package.json index 8b27e49a1..76d188d59 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,7 @@ "test:ci": "NODE_ENV=testing gulp && jest -ci --runInBand --verbose", "test:watch": "NODE_ENV=testing gulp watch & jest --watch", "test:coverage": "NODE_ENV=testing gulp && jest --coverage", - "lint": "NODE_OPTIONS=--max-old-space-size=4096 ng lint", + "lint": "NODE_OPTIONS=--max-old-space-size=8192 ng lint", "ionic:serve:before": "gulp", "ionic:serve": "cross-env-shell ./scripts/serve.sh", "ionic:build:before": "gulp",