======
README
======

Let's test the source code with our custom checker:

  >>> import p01.checker
  >>> import j01.editor

  >>> skipFileNames = [
  ...     'quill.js',
  ...     'quill.core.js',
  ... ]

  >>> checker = p01.checker.Checker()
  >>> checker.check(j01.editor, skipFileNames=skipFileNames)
  ------------------------
  cdn/css/quill.bubble.css
  ------------------------
  472: Unknown property 'fill'.
        fill: #fff;
  502: Unknown property 'stroke'.
        stroke: #fff;
  513: Unknown property 'fill'.
        fill: #ccc;
  519: Unknown property 'stroke'.
        stroke: #ccc;
  556: Unknown property 'fill'.
        fill: none;
  557: Unknown property 'stroke'.
        stroke: #ccc;
  558: Unknown property 'stroke-linecap'.
        stroke-linecap: round;
  559: Unknown property 'stroke-linejoin'.
        stroke-linejoin: round;
  560: Unknown property 'stroke-width'.
        stroke-width: 2;
  563: Unknown property 'fill'.
        fill: none;
  564: Unknown property 'stroke'.
        stroke: #ccc;
  565: Unknown property 'stroke-miterlimit'.
        stroke-miterlimit: 10;
  566: Unknown property 'stroke-width'.
        stroke-width: 2;
  570: Unknown property 'fill'.
        fill: #ccc;
  573: Unknown property 'fill'.
        fill: none;
  576: Unknown property 'fill-rule'.
        fill-rule: evenodd;
  580: Unknown property 'stroke-width'.
        stroke-width: 1;
  686: Unknown property 'fill'.
        fill: #777;
  689: Unknown property 'stroke'.
        stroke: #777;
  ----------------------
  cdn/css/quill.snow.css
  ----------------------
  472: Unknown property 'fill'.
        fill: #06c;
  502: Unknown property 'stroke'.
        stroke: #06c;
  513: Unknown property 'fill'.
        fill: #444;
  519: Unknown property 'stroke'.
        stroke: #444;
  556: Unknown property 'fill'.
        fill: none;
  557: Unknown property 'stroke'.
        stroke: #444;
  558: Unknown property 'stroke-linecap'.
        stroke-linecap: round;
  559: Unknown property 'stroke-linejoin'.
        stroke-linejoin: round;
  560: Unknown property 'stroke-width'.
        stroke-width: 2;
  563: Unknown property 'fill'.
        fill: none;
  564: Unknown property 'stroke'.
        stroke: #444;
  565: Unknown property 'stroke-miterlimit'.
        stroke-miterlimit: 10;
  566: Unknown property 'stroke-width'.
        stroke-width: 2;
  570: Unknown property 'fill'.
        fill: #444;
  573: Unknown property 'fill'.
        fill: none;
  576: Unknown property 'fill-rule'.
        fill-rule: evenodd;
  580: Unknown property 'stroke-width'.
        stroke-width: 1;
  686: Unknown property 'fill'.
        fill: #ccc;
  689: Unknown property 'stroke'.
        stroke: #ccc;
