• This project
    • Loading...
  • Sign in

fe / yoho-shop-manage · Files

Go to a project

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • yoho-shop-manage
  • .stylelintrc
  • chore: fix scss @ warning
    0dcb9515
    by zhangwenxue
    2019-08-01 01:16:18 +0800  
    Browse Files
.stylelintrc 349 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
{
  "extends": [
    "stylelint-scss",
    "stylelint-config-recommended",
    "stylelint-prettier/recommended"
  ],
  "rules": {
    "at-rule-no-unknown": [
      true,
      {
        "ignoreAtRules": ["extends", "ignores", "mixin", "include"]
      }
    ],
    "unit-whitelist": ["em", "rem", "s", "%", "px"],
    "prettier/prettier": true
  }
}