3
0
mirror of https://github.com/Qortal/q-fund-v2.git synced 2025-01-28 22:02:20 +00:00
q-fund-v2/.eslintrc.cjs
2023-12-10 14:13:58 +02:00

15 lines
391 B
JavaScript

module.exports = {
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:react-hooks/recommended',
],
parser: '@typescript-eslint/parser',
parserOptions: { ecmaVersion: 'latest', sourceType: 'module' },
plugins: ['react-refresh'],
rules: {
'react-refresh/only-export-components': 'warn',
},
}