diff options
author | Akshit Kr Nagpal <akshitkrnagpal@gmail.com> | 2018-05-22 00:47:24 +0530 |
---|---|---|
committer | Saúl Ibarra Corretgé <s@saghul.net> | 2018-05-21 21:17:24 +0200 |
commit | cfcab5e00784598ee7121c190fda48886876d963 (patch) | |
tree | e071c6d6bc72a7d05f57e2ce1e8506be0d06fa4f /.eslintrc.js | |
parent | 304f5efe3d441d4250e7ef3d8ed0f4df665c5b53 (diff) |
Configured React using Webpack with current functionality (#28)
Diffstat (limited to '.eslintrc.js')
-rw-r--r-- | .eslintrc.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.eslintrc.js b/.eslintrc.js index ac0ab91..846d680 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,6 +1,10 @@ module.exports = { 'extends': [ - 'eslint-config-jitsi' + 'eslint-config-jitsi', + 'plugin:react/recommended' + ], + 'plugins': [ + 'react' ], 'rules': { 'no-new': 1, |