mirror of
https://github.com/joel-st/kunkun-nostr-nip-19.git
synced 2025-04-03 17:56:43 +00:00
23 lines
435 B
JavaScript
23 lines
435 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: { browser: true, es2020: true },
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:react-hooks/recommended',
|
|
],
|
|
ignorePatterns: ['dist', '.eslintrc.cjs'],
|
|
plugins: ['react-refresh'],
|
|
rules: {
|
|
'react-refresh/only-export-components': [
|
|
'warn',
|
|
{ allowConstantExport: true },
|
|
],
|
|
},
|
|
settings: {
|
|
react: {
|
|
pragma: 'h',
|
|
version: '18.2.0',
|
|
},
|
|
},
|
|
}
|