AtomLinter / linter-stylelint

A plugin for Atom Linter providing an interface to stylelint.
https://atom.io/packages/linter-stylelint
115 stars 37 forks source link

Cannot destructure property `isPathValid` of 'undefined' or 'null'. #581

Open brandondurham opened 3 years ago

brandondurham commented 3 years ago

After adding a stylelint config (see below) to my project I get this error:

[Linter] Error running stylelint TypeError: Cannot destructure property `isPathValid` of 'undefined' or 'null'.

This is my simple config (.stylelintrc.json):

{
  "extends": "stylelint-config-standard",
  "plugins": [
    "stylelint-order"
  ],
  "rules": {
    "order/order": [
      "custom-properties",
      "declarations"
    ],
    "order/properties-order": [
      "width",
      "height"
    ]
  }
}

Running Atom 1.52.0 x64 and linter-stylelint 4.5.1.

androdel commented 3 years ago

I have the same issue

yamiteru commented 3 years ago

Any updates on this issue?

ifeanyi305 commented 1 year ago

I have the same issues