react-script-loader-hoc
Version:
A higher-order React component that assists in the asynchronous loading of third party JS libraries (eg. Stripe.js)
30 lines (25 loc) • 582 B
JavaScript
module.exports = {
parser: 'babel-eslint',
parserOptions: {
ecmaVersion: '2018',
},
extends: ['airbnb', 'eslint-config-prettier'],
plugins: ['import', 'jest'],
env: {
browser: true,
'jest/globals': true,
},
rules: {
'no-console': [
'error',
{
allow: ['warn', 'error', 'info'],
},
],
'react/jsx-filename-extension': ['error', {extensions: ['.js', '.jsx']}],
'react/prefer-stateless-function': 'off',
'no-confusing-arrow': 'off',
'no-underscore-dangle': 'off',
'no-mixed-operators': 'off',
},
};