Files
Oğuzhan Koral fe77ede49e feat: introduce CI linting & fix various issues (#5)
* 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>
2025-05-14 10:05:51 +03:00

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
}
}
]
}