-
-
Notifications
You must be signed in to change notification settings - Fork 146
/
Copy pathstylelint.config.mjs
33 lines (32 loc) · 1.35 KB
/
stylelint.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/** @type {import('stylelint').Config} */
export default {
"extends": "stylelint-config-standard",
"rules": {
"block-no-empty": null, // To fix, or to disable per file ?
"declaration-block-no-duplicate-properties": null, // Candidate to fix ?
"declaration-block-no-shorthand-property-overrides": null,
"declaration-block-single-line-max-declarations": null,
"declaration-property-value-no-unknown": null,
"declaration-property-value-keyword-no-deprecated": null, // To fix ?
"font-family-no-missing-generic-family-keyword": null,
"media-feature-name-no-unknown": null,
"no-descending-specificity": null,
"no-duplicate-selectors": null, // Candidate to fix ?
"no-empty-source": null,
"selector-class-pattern": ".*",
"selector-id-pattern": ".*"
},
"ignoreFiles": [
"docs/**/*.css",
"lizmap/vendor/**/*.css",
"lizmap/www/assets/css/bootstrap.min.css",
"lizmap/www/assets/css/dataTables.bootstrap.min.css",
"lizmap/www/assets/css/jquery.dataTables.min.css",
"lizmap/www/assets/css/responsive.dataTables.min.css",
"lizmap/www/assets/jelix/**/*.css",
"lizmap/www/assets/js/jquery/**/*.css",
"tests/units/vendor/**/*.css",
"vendor/**/*.css",
"www/assets/**/*.css",
]
};