diff options
author | Vitaly Takmazov | 2022-06-02 08:09:03 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2022-06-02 08:09:03 +0300 |
commit | c03f11f6e18975c66724204e7f6eb02d03dbf236 (patch) | |
tree | 86cf18f40a374b1d9f91f7b2a07551e92dca0342 /.eslintrc | |
parent | b6fe10eadadd69220033e72799e2f5b5a8278718 (diff) |
eslint-plugin-jsdoc
Diffstat (limited to '.eslintrc')
-rw-r--r-- | .eslintrc | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -2,7 +2,8 @@ // Extend existing configuration // from ESlint and eslint-plugin-react defaults. "extends": [ - "eslint:recommended" + "eslint:recommended", + "plugin:jsdoc/recommended" //, "plugin:react/recommended" ], // Enable ES6 support. If you want to use custom Babel @@ -19,7 +20,8 @@ // Enable custom plugin known as eslint-plugin-react "plugins": [ // "react" - "only-ascii" + "only-ascii", + "jsdoc" ], // http://eslint.org/docs/rules/ "rules": { |