module.exports = { env: { browser: true, es2021: true, jest: true }, extends: 'standard-with-typescript', overrides: [ ], ignorePatterns: ['dist'], parserOptions: { ecmaVersion: 'latest', sourceType: 'module', project: ['tsconfig.json'] }, rules: { semi: ['error', 'always'], 'no-unexpected-multiline': 'off', '@typescript-eslint/semi': ['error', 'always'], 'space-before-function-paren': 'off', '@typescript-eslint/member-delimiter-style': ['error', { multiline: { delimiter: 'semi', requireLast: true } }], '@typescript-eslint/space-before-function-paren': 'off', '@typescript-eslint/explicit-function-return-type': 'warn', '@typescript-eslint/restrict-template-expressions': 'off', '@typescript-eslint/prefer-nullish-coalescing': 'off', '@typescript-eslint/restrict-plus-operands': 'off', '@typescript-eslint/strict-boolean-expressions': 'off' } };