mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-10-31 22:19:00 +00:00
cc01105bf0
- Add Github Action. - Update .gitignore. - Add .stylelintignore for vendor related files. - Fix format.css to match rules (includes hacks with @todo).
17 lines
281 B
JavaScript
17 lines
281 B
JavaScript
/* global module */
|
|
|
|
module.exports = {
|
|
"extends": "stylelint-config-standard",
|
|
|
|
"plugins": [
|
|
"stylelint-order"
|
|
],
|
|
|
|
"rules": {
|
|
"order/order": [
|
|
"custom-properties",
|
|
"declarations"
|
|
],
|
|
"indentation": 4
|
|
}
|
|
};
|