mirror of
https://github.com/Qortal/Q-Apps-Utils.git
synced 2025-01-28 22:02:18 +00:00
QortalSeth
1ffbd743c5
restructured project files to be easier to understand Vite dts plugin is used to provide type support Added functions for the following: Getting wallet balance Getting/setting profile data Sending all supported coins Getting day summary Getting the price ratio between QORT and all supported coins Conversions from blocks to time and time to blocks
16 lines
436 B
JavaScript
16 lines
436 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',
|
|
'@typescript-eslint/no-explicit-any': 0,
|
|
},
|
|
}
|