Added a baseline style for most elements
All checks were successful
Build and Deploy Astro Site / deploy (push) Successful in 23s
All checks were successful
Build and Deploy Astro Site / deploy (push) Successful in 23s
This commit is contained in:
24
.stylelintrc.js
Normal file
24
.stylelintrc.js
Normal file
@@ -0,0 +1,24 @@
|
||||
export default {
|
||||
extends: [
|
||||
'stylelint-config-standard',
|
||||
'stylelint-config-html', // For .astro files
|
||||
'stylelint-config-clean-order'
|
||||
],
|
||||
overrides: [
|
||||
{
|
||||
files: ['**/*.astro'],
|
||||
customSyntax: 'postcss-html',
|
||||
},
|
||||
],
|
||||
rules: {
|
||||
// Allow unknown at-rules for PostCSS utilities
|
||||
'at-rule-no-unknown': [
|
||||
true,
|
||||
{
|
||||
ignoreAtRules: ['util', 'apply'], // For postcss-utilities
|
||||
},
|
||||
],
|
||||
// Allow CSS-in-JS style nesting
|
||||
'no-descending-specificity': null,
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user