adding stylelint to repo

This commit is contained in:
Amruth Pillai
2020-10-04 08:58:01 +05:30
parent 469f53bf6e
commit a11db1db10
36 changed files with 851 additions and 43 deletions

19
stylelint.config.js Normal file
View File

@ -0,0 +1,19 @@
module.exports = {
extends: ['stylelint-config-standard'],
rules: {
'at-rule-no-unknown': [
true,
{
ignoreAtRules: [
'tailwind',
'apply',
'variants',
'responsive',
'screen',
],
},
],
'declaration-block-trailing-semicolon': null,
'no-descending-specificity': null,
},
};