From a947d5b3cff32104ee009113226feab45439dbdd Mon Sep 17 00:00:00 2001 From: Ivan Gabaldon Date: Sat, 28 Jun 2025 09:55:15 +0200 Subject: [mod] theme/simple: improve fmt/lint tech 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. --- client/simple/.stylelintrc.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'client/simple/.stylelintrc.json') diff --git a/client/simple/.stylelintrc.json b/client/simple/.stylelintrc.json index 478c7f2c4..ab5219141 100644 --- a/client/simple/.stylelintrc.json +++ b/client/simple/.stylelintrc.json @@ -1,17 +1,17 @@ { - "formatter": "unix", - "plugins": [ "stylelint-prettier" ], - "extends": [ "stylelint-config-standard-less" ], + "$schema": "https://json.schemastore.org/stylelintrc.json", + "plugins": ["stylelint-prettier"], + "extends": ["stylelint-config-standard-less"], "rules": { - "prettier/prettier": true, + "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-no-vendor-prefix": null, "selector-attribute-quotes": null, - "shorthand-property-no-redundant-values": null, - "at-rule-no-vendor-prefix": null, + "selector-class-pattern": null, "selector-id-pattern": null, - "selector-class-pattern": null + "selector-no-vendor-prefix": null, + "shorthand-property-no-redundant-values": null } } -- cgit v1.2.3