File: .stylelintrc

package info (click to toggle)
pdf.js 2.14.305%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 107,564 kB
  • sloc: javascript: 134,317; makefile: 15
file content (18 lines) | stat: -rw-r--r-- 287 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "plugins": [
    "stylelint-prettier"
  ],

  "extends": [
    "stylelint-prettier/recommended"
  ],


  "rules": {
    "block-no-empty": true,
    "length-zero-no-unit": [true, {
      ignore: ["custom-properties"]
    }],
    "shorthand-property-no-redundant-values": true,
  },
}