It would be great if we could define multiple sets of standard configurations. For instance, I have a codebase with multiple modules that’s structured like:
- root
- terraform
- angular_application
- rails_application
It would be great if I could define sets of rules, being able to simple pick one of these predefined sets rather than always needing to populate what files I want to include or exclude. I noticed there are typical sets I recurrently use, so it’d be good to save them and select them easily. Below are some simple examples just to illustrate
+ name: back-end
- include rules:
rails/**/*.rb, rails/**/*.yml
+ name: back-end tests
- include rules:
rails/spec/**/*
+ name: front-end
- include rules:
angular/**/*.ts, angular/**/*.yml
- exclude rules:
node_modules/