module.exports = { extends: 'airbnb', parser: 'babel-eslint', parserOptions: { sourceType: 'module', ecmaVersion: 2017 }, env: { browser: true }, rules: { 'no-console': 1, 'no-trailing-spaces': 0, 'prefer-destructuring': 0, 'no-mixed-operators': 0, 'no-underscore-dangle': 0, 'no-case-declarations': 0, 'no-restricted-syntax': 0, 'no-unused-vars': 1, 'no-plusplus': ['error', { 'allowForLoopAfterthoughts': true }], 'import/prefer-default-export': 0, 'react/jsx-filename-extension': 0, 'react/forbid-prop-types': 0, 'react/prop-types': [1, { skipUndeclared: true }], 'jsx-a11y/click-events-have-key-events': 0, }, 'settings': { 'import/resolver': { 'webpack': {} } } };