diff options
| author | Bnyro <bnyro@tutanota.com> | 2025-01-07 14:34:50 +0100 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarIT.de> | 2025-01-14 15:22:23 +0100 |
| commit | 337a6db064ad36b3005431feaa0a5efd8548d04f (patch) | |
| tree | a2c7c1819e6e2a17bf955fabc6d038208ce8fe3a /searx/static/themes/simple/.stylelintrc.json | |
| parent | 9d834c0722021e895f57f7a35a80f3d82e7344c5 (diff) | |
[upd] stylelint: use less-compatible configuration and update rules
Diffstat (limited to 'searx/static/themes/simple/.stylelintrc.json')
| -rw-r--r-- | searx/static/themes/simple/.stylelintrc.json | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/searx/static/themes/simple/.stylelintrc.json b/searx/static/themes/simple/.stylelintrc.json index be082eeb4..1e9b64136 100644 --- a/searx/static/themes/simple/.stylelintrc.json +++ b/searx/static/themes/simple/.stylelintrc.json @@ -1,7 +1,14 @@ { - "extends": "stylelint-config-standard", + "extends": "stylelint-config-standard-less", "rules": { "declaration-empty-line-before": null, - "no-invalid-position-at-import-rule": null + "no-invalid-position-at-import-rule": null, + "property-no-vendor-prefix": null, + "selector-no-vendor-prefix": null, + "selector-attribute-quotes": null, + "shorthand-property-no-redundant-values": null, + "at-rule-no-vendor-prefix": null, + "selector-id-pattern": null, + "selector-class-pattern": null } } |