Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[bslint] support bslint.json inheritance via extends #103

Open
bartvandenende-wm opened this issue Apr 23, 2024 · 1 comment
Open

[bslint] support bslint.json inheritance via extends #103

bartvandenende-wm opened this issue Apr 23, 2024 · 1 comment
Labels
enhancement New feature or request good first issue Good for newcomers

Comments

@bartvandenende-wm
Copy link

Summary

Support bslint.json inheritance via extends

Details

it would be great if bslint.json would be able to support inheritance similar to eslint and bsconfig.json to support default lint configurations

for example

  1. ./node_modules/shared-config/bslint.json
{
  "rules": {
    ....{default-lint-rules}
  },
  "globals": [],
  "ignores": [ ]
}
  1. ./bslint.json
{
  "extends": "./node_modules/shared-config/bslint.json",
  "rules": {
    ....{project-lint-rules}
  },
}
@TwitchBronBron TwitchBronBron added enhancement New feature or request good first issue Good for newcomers labels May 7, 2024
@TwitchBronBron
Copy link
Member

Yeah this would be a nice addition!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

2 participants