- Updated repository information like README, License, and app's version to 0.1.0 for better versioning; - (Possibly) fixed PWA and page theme features; - Fixed linting code format.
14 lines
285 B
JavaScript
14 lines
285 B
JavaScript
module.exports = {
|
|
customSyntax: 'postcss-html',
|
|
extends: [
|
|
'stylelint-config-standard',
|
|
'stylelint-config-recommended-vue',
|
|
'stylelint-config-prettier',
|
|
],
|
|
// add your custom config here
|
|
// https://stylelint.io/user-guide/configuration
|
|
rules: {
|
|
string: 'single',
|
|
},
|
|
};
|