mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-11 20:00:29 +01:00
26 lines
625 B
JavaScript
26 lines
625 B
JavaScript
module.exports = {
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:react/recommended',
|
|
'plugin:import/recommended',
|
|
'plugin:jsx-a11y/recommended',
|
|
'plugin:@typescript-eslint/recommended',
|
|
'eslint-config-prettier',
|
|
],
|
|
ignorePatterns: ['src-tauri/**/*'],
|
|
settings: {
|
|
react: {
|
|
version: 'detect',
|
|
},
|
|
'import/resolver': {
|
|
node: {
|
|
paths: ['src-web'],
|
|
extensions: ['.js', '.jsx', '.ts', '.tsx'],
|
|
},
|
|
},
|
|
},
|
|
rules: {
|
|
"react/react-in-jsx-scope": "off",
|
|
},
|
|
};
|