postcss-smart-asset
Version:
PostCSS plugin to rebase or inline on url().
25 lines (17 loc) • 668 B
YAML
# Generally, we allow slightly longer lines (110 for code, 140 for comments),
# but we limit this to a value that leads to better results when using auto formatting.
printWidth: 90
# Use two spaces for tabs
tabWidth: 2
# Unify with convention used in JSX, HTML and CSS to use double quotes
singleQuote: false
# Don't use semicolons where they are not required
semi: false
# Don't do noisy trailing commas
trailingComma: none
# More space is better for readability
bracketSpacing: true
# Put the > of a multi-line JSX element at the end of the last line
jsxBracketSameLine: false
# Include parentheses around a sole arrow function parameter.
arrowParens: always