Skip to content

Commit

Permalink
Statewise heat-map based on Population density covid19india#1007
Browse files Browse the repository at this point in the history
  • Loading branch information
nishcthulhu committed Apr 22, 2020
2 parents 0da4a9b + 817c112 commit b8f5375
Show file tree
Hide file tree
Showing 45 changed files with 1,748 additions and 963 deletions.
24 changes: 23 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,36 @@ module.exports = {
ecmaVersion: 2018,
sourceType: 'module',
},
plugins: ['react', 'prettier', 'react-hooks'],
plugins: ['react', 'prettier', 'react-hooks', 'import'],
rules: {
'require-jsdoc': 0,
'prettier/prettier': 'error',
'no-invalid-this': 0,
'react/prop-types': 0,
'react-hooks/rules-of-hooks': 'warn',
'react-hooks/exhaustive-deps': 'error',
'import/no-unresolved': [2, {commonjs: true, amd: true}],
'import/named': 2,
'import/default': 2,
'import/export': 2,
'import/order': [
2,
{
groups: [
'index',
'sibling',
'parent',
'internal',
'external',
'builtin',
],
'newlines-between': 'always',
alphabetize: {
order: 'asc',
caseInsensitive: true,
},
},
],
},
settings: {
react: {
Expand Down
Loading

0 comments on commit b8f5375

Please sign in to comment.