analytics/assets/.stylelintrc.json
Artur Pata e2456ee215 Update assets dev dependencies
* Removes outdated precommit scripts
* Updates eslint, prettier, stylelint and their configurations: turns on plugins that were installed but off
* Fixes stylelint errors
* Applies prettier to css files
* Fixes new eslint errors
* Updates lint script to include both stylelint and eslint
2024-08-12 09:39:25 +03:00

14 lines
402 B
JSON

{
"extends": ["stylelint-config-standard"],
"ignoreFiles": ["./node_modules/**/*.*"],
"rules": {
"import-notation": "string",
"at-rule-no-unknown": [true, { "ignoreAtRules": ["apply", "screen"] }],
"at-rule-empty-line-before": [
"always",
{ "except": ["blockless-after-same-name-blockless"], "ignoreAtRules": ["apply"] }
],
"no-descending-specificity": null
}
}