rgranger
rgranger
Hi ! I am having the same issue here. I assumed option "cwd" was supposed to resolve this, but either it doesn't work, or I am doing something wrong. I...
same issue here : I have this minimal config : ```json { "extends": [ "stylelint-config-standard", "stylelint-config-sass-guidelines", "stylelint-config-rational-order" ], "rules": { "selector-class-pattern": ["[a-z]",{ "resolveNestedSelectors": true }], "max-nesting-depth": [2, {}] } }...
Weirdly, when i had this line to the config : ```json { "extends": [ "stylelint-config-standard", "stylelint-config-sass-guidelines", "stylelint-config-rational-order" ], "rules": { "order/properties-alphabetical-order": [false], //
Ok, so after looking it up, it's not "[false]" to disable alphabetical-order, but "null". So with this config : ```json { "extends": [ "stylelint-config-standard", "stylelint-config-sass-guidelines", "stylelint-config-rational-order" ], "rules": { "order/properties-alphabetical-order":...
Any update on this issue ? I just installed this module (so i got v0.5.5), and got the same warning I'm using Webpack, should i mark `original-fs` as an external...
I encountered the same issue. The behavior is the same for the following : * `self.array = newArray` * `applySnapshot(self.array, newArray)` * `self.array.replace(newArray)` The issue is the following : when...
As a workaround, i'm using the type `frozen` instead : https://mobx-state-tree.js.org/API/#frozen The downside is this type can't be mutated. But a replacement of the value triggers a single "replace" JSON...
No, nothing new since the last time : > As a workaround, i'm using the type frozen instead : https://mobx-state-tree.js.org/API/#frozen > The downside is this type can't be mutated. But...
This is a great solution, thanks !