mirror of
https://github.com/searxng/searxng.git
synced 2025-08-04 19:06:44 +02:00
This is one of various PR to refactor the simple theme internally. Replace eslint tool with Biome. I have been using this for quite some time, and it will help us to have more consistent and valid code without extending on other third party plugins. Removes unused dependencies.
17 lines
566 B
JSON
17 lines
566 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/stylelintrc.json",
|
|
"plugins": ["stylelint-prettier"],
|
|
"extends": ["stylelint-config-standard-less"],
|
|
"rules": {
|
|
"at-rule-no-vendor-prefix": null,
|
|
"declaration-empty-line-before": null,
|
|
"no-invalid-position-at-import-rule": null,
|
|
"prettier/prettier": true,
|
|
"property-no-vendor-prefix": null,
|
|
"selector-attribute-quotes": null,
|
|
"selector-class-pattern": null,
|
|
"selector-id-pattern": null,
|
|
"selector-no-vendor-prefix": null,
|
|
"shorthand-property-no-redundant-values": null
|
|
}
|
|
}
|