initial tool setup and basic styles
This commit is contained in:
22
stylelint.config.js
Normal file
22
stylelint.config.js
Normal file
@@ -0,0 +1,22 @@
|
||||
export default {
|
||||
extends: [
|
||||
'stylelint-config-standard',
|
||||
'stylelint-config-html',
|
||||
'stylelint-config-clean-order'
|
||||
],
|
||||
overrides: [
|
||||
{
|
||||
files: ['**/*.{js,jsx,ts,tsx}'],
|
||||
customSyntax: 'postcss-html',
|
||||
},
|
||||
],
|
||||
rules: {
|
||||
'at-rule-no-unknown': [
|
||||
true,
|
||||
{
|
||||
ignoreAtRules: ['util', 'apply'],
|
||||
},
|
||||
],
|
||||
'no-descending-specificity': null,
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user