api-client/packages/hoppscotch-app/.stylelintrc.js

32 lines
707 B
JavaScript
Raw Normal View History

2021-05-17 05:55:50 +00:00
module.exports = {
2021-11-04 15:29:01 +00:00
ignoreFiles: ["/**/*.vue"],
2021-11-04 12:53:50 +00:00
extends: [
"stylelint-config-standard",
"stylelint-config-prettier",
"stylelint-config-standard-scss",
],
defaultSeverity: "warning",
2021-05-17 05:55:50 +00:00
// add your custom config here
// https://stylelint.io/user-guide/configuration
rules: {
"at-rule-no-unknown": [
true,
{
ignoreAtRules: [
2021-05-20 02:24:31 +00:00
"extends",
2021-05-17 05:55:50 +00:00
"apply",
"variants",
"responsive",
"screen",
"mixin",
"include",
],
},
],
"declaration-block-trailing-semicolon": null,
"no-descending-specificity": null,
2021-11-04 12:53:50 +00:00
"selector-class-pattern": null,
"selector-id-pattern": null,
2021-05-17 05:55:50 +00:00
},
}