This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
people/src/frontend/apps/desk/stylelint.config.js
Anthony LC 9ee39e1068 🏗️(app-desk) export app in out folder
We export the app in the out folder. This is a static export,
so our app can be deployed and hosted
on any web server that can serve HTML/CSS/JS static assets.
2024-01-23 12:59:15 +01:00

10 lines
255 B
JavaScript

module.exports = {
extends: ['stylelint-config-standard', 'stylelint-prettier/recommended'],
rules: {
'custom-property-pattern': null,
'selector-class-pattern': null,
'no-descending-specificity': null,
},
ignoreFiles: ['out/**/*'],
};