Create your own framework! Define your folder structure, advanced naming conventions, file composition, and create independent modules. #1211
Igorkowalski94
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey, I think my library might interest you. Thanks to it, you can automatically validate your folder structure rules and much more.
If you are interested, I’d be happy to assist with the implementation and answer any questions you may have.
Below is the full description of the features:
eslint‑plugin-project‑structure
ESLint plugin with rules to help you achieve a scalable, consistent, and well-structured project.
Create your own framework! Define your folder structure, advanced naming conventions, file composition, and create independent modules.
Take your project to the next level and save time by automating the review of key principles of a healthy project!
project‑structure/folder‑structure
Enforce rules on folder structure to keep your project consistent, orderly and well thought out.
*
and treating.
as a character, along with other conveniences../src/Component.tsx
exists, then./src/Component.test.tsx
and./src/stories/Component.stories.tsx
must also exist.project‑structure/independent‑modules
A key principle of a healthy project is to prevent the creation of a massive dependency tree, where removing or editing one feature triggers a chain reaction that impacts the entire project.
Create independent modules to keep your project scalable and easy to maintain. Get rid of dependencies between modules and create truly independent functionalities.
project‑structure/file‑composition
Enforce advanced naming rules and prohibit the use of given selectors in a given file.
Have full control over what your file can contain and the naming conventions it must follow.
class
,function
,arrowFunction
,type
,interface
,enum
,variable
,variableCallExpression
,variableTaggedTemplateExpression
.**/*.consts.ts
files can only contain variables,**/*.types.ts
files can only contain enums, interfaces and types.Beta Was this translation helpful? Give feedback.
All reactions