fe77ede49e
* introduce CI checks * fixx * add caching * fixes * wip * server bridge linting * No lint errors * fix paths on lint:prettier * make files pretty again * fix stylelint * fix lock --------- Co-authored-by: Kristaps Fabians Geikins <fabis94@live.com>
25 lines
620 B
JavaScript
25 lines
620 B
JavaScript
module.exports = {
|
|
extends: ['stylelint-config-standard', 'stylelint-config-recommended-vue'],
|
|
// add your custom config here
|
|
// https://stylelint.io/user-guide/configuration
|
|
rules: {
|
|
// Rules to make stylelint happy with tailwind syntax
|
|
'at-rule-no-unknown': [
|
|
true,
|
|
{
|
|
ignoreAtRules: ['tailwind', 'apply', 'variants', 'responsive', 'screen']
|
|
}
|
|
],
|
|
'at-rule-no-deprecated': [true, { ignoreAtRules: ['apply'] }],
|
|
'no-descending-specificity': null
|
|
},
|
|
overrides: [
|
|
{
|
|
files: '**/*.vue',
|
|
rules: {
|
|
'value-keyword-case': null
|
|
}
|
|
}
|
|
]
|
|
}
|