mirror of
https://github.com/searxng/searxng.git
synced 2026-05-08 02:13:51 +02:00
a947d5b3cf
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.
18 lines
566 B
JSON
18 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
|
|
}
|
|
}
|