mirror of
https://github.com/plausible/analytics.git
synced 2024-11-25 07:06:11 +03:00
e2456ee215
* 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
14 lines
402 B
JSON
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
|
|
}
|
|
}
|