module.exports = { extends: 'airbnb', rules: { semi: [2,'never'], 'no-plusplus': ['error', { allowForLoopAfterthoughts: true }], 'no-shadow': 'off', 'global-require': 'off', 'no-undef': 'off', 'prefer-destructuring': 'off', 'object-curly-newline': 'off', 'no-restricted-syntax': 'off', 'consistent-return': 'off', 'no-loop-func': 'off', 'no-underscore-dangle': 'off', 'implicit-arrow-linebreak': 'off', 'no-param-reassign': 'off', 'no-await-in-loop': 'off', 'import/no-unresolved': 'off', 'import/no-dynamic-require': 'off', 'import/order': 'off', 'import/newline-after-import': 'off', 'import/no-extraneous-dependencies': 'off', 'react/destructuring-assignment': 'off', 'react/jsx-one-expression-per-line': 'off', 'react/forbid-prop-types': 'off', 'react/no-did-update-set-state': 'off', }, }