Closed karltaylor closed 2 years ago
Add eslint-plugin-import to help clean up imports
eslint-plugin-import
https://github.com/import-js/eslint-plugin-import
Config for Sen but can be adapted to be generic
"import/order": [ "error", { "groups": ["external", "index"], "pathGroups": [ { "pattern": "src/components/**/*", "group": "internal" }, { "pattern": "src/core/**/*", "group": "external", "position": "after" } ], "newlines-between": "always" } ]
I've actually started to dislike this 🙃
Add
eslint-plugin-import
to help clean up importshttps://github.com/import-js/eslint-plugin-import
Config for Sen but can be adapted to be generic