Traduction + alias + routing + refactoring

This commit is contained in:
Sebastien Riviere
2026-02-20 22:00:54 +01:00
parent 776bbcd723
commit 76ee9674de
50 changed files with 2978 additions and 1746 deletions

View File

@@ -21,6 +21,12 @@ module.exports = {
"react",
"react-native"
],
"ignorePatterns": [
"android/",
".expo/",
"node_modules/",
"src/assets/",
],
"rules": {
"react/react-in-jsx-scope": "off",
"react/prop-types": "off",
@@ -29,6 +35,11 @@ module.exports = {
"react-native/no-unused-styles": "warn",
"react-native/no-single-element-style-arrays": "warn",
'import/extensions': 'off',
"import/no-unresolved": "off",
"import/named": "off",
"import/namespace": "off",
"import/default": "off",
"import/no-named-as-default-member": "off"
},
"settings": {
"react": {
@@ -38,9 +49,9 @@ module.exports = {
"react-native"
],
'import/resolver': {
node: {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
},
"node": {
"extensions": ['.js', '.jsx', '.ts', '.tsx'],
}
},
}
};
};