fix(api): eslint imports order

This commit is contained in:
yassinedorbozgithub
2024-10-16 18:54:55 +01:00
parent 06f481c8a8
commit 72e3f3ef1a
98 changed files with 264 additions and 166 deletions

View File

@@ -57,7 +57,8 @@ module.exports = {
'builtin', // Built-in imports (come from NodeJS native) go first
'external', // <- External imports
'unknown', // <- unknown
['sibling', 'parent'], // <- Relative imports, the sibling and parent types they can be mingled together
'parent', // <- Relative imports, the sibling and parent types they can be mingled together
'sibling',
'index', // <- index imports
'internal', // <- Absolute imports
],