Sonika Sharma

Results 8 comments of Sonika Sharma

@leodido - facing the same issue.. Could you please suggest a way to fix this

`.stylelintrc.json`: ```{ "extends": ["stylelint-config-standard-scss", "stylelint-config-idiomatic-order"], "plugins": [ "stylelint-scss", "./libs/assets/src/lib/scripts/stylelint-rule-no-deprecated-variables.js" ], "rules": { "@plugin/no-deprecated-variables": [true] ... } } `stylelint-rule-no-deprecated-variables.js`: ` const stylelint = require('stylelint'); const fs = require('fs'); const path =...

sample json `{ "deprecatedWithReplacement": [ { "from": "$plugin-primary-lightest", "to": "$new-color-primary-subtlest" }, ... ] }` create a scss file use the deprecated variable `.test { color: $plugin-primary-lightest} .bgTest: { background-color: $plugin-primary-lightest}`...

sure .stylelintrc.json ``` { "extends": ["stylelint-config-standard-scss", "stylelint-config-idiomatic-order"], "plugins": [ "stylelint-scss", "./libs/assets/src/lib/scripts/stylelint-rule-no-deprecated-variables.js" ], "rules": { "@plugin/no-deprecated-variables": [true] } } ``` ```js const stylelint = require('stylelint'); const fs = require('fs'); const path...

@lostkeys - with TinyMCE v4, it used to work. hence, was wondering if it has been changed. Using the full-page plugin, I guess we were able to do it.