@skywire-london/shared-configs

v1.0.1

Published

Currently only used for the [biomejs](https://biomejs.dev/) formatter and linter

Readme

Skywire Shared Configurations

Currently only used for the biomejs formatter and linter

Install as:

npm i @skywire-london/shared-configs --save-dev

then create a ./biome.json file in the root of the project with the following in it:

{
    "extends": ["@skywire-london/shared-configs/biome"],
    "linter": {
        "ignore": ["build/", ".svelte-kit/", "dist/"]
    }
}

Update the ignores as required

You can now override any settings contained in the shared config as required like:

{
    "extends": ["@skywire-london/shared-configs/biome"],
    "javascript": {
        "formatter": {
            "quoteStyle": "single"
        }
    }
}