Ad
PhpStorm. Disable CSS Codestyle Formatting
Currently I'm working with Vue.js components.
The problem is that I have such a style block
<style scoped>
.some-class >>> .multiselect__tags {
/*...*/
}
</style>
and PhpStorm 2017.3.6 is constantly converting it into
<style scoped>
.some-class > > > .multiselect__tags {
/*...*/
}
</style>
what is, obviously, an error, cause >>>
is a Vue.js-specific combinator. More about it here.
Did I miss a solution except for the /deep/
combinator?
Ad
Answer
You will have to upgrade your IDE to next 2018.1 version -- it was fixed there (see https://youtrack.jetbrains.com/issue/WEB-26828)
- WebStorm 2018.1 is already released
- PhpStorm 2018.1 will be released soon (expected this week)
You may use Release Candidate build meantime if you need this functionality right now in PhpStorm.
Ad
source: stackoverflow.com
Related Questions
- → "failed to open stream" error when executing "migrate:make"
- → October CMS Plugin Routes.php not registering
- → OctoberCMS Migrate Table
- → OctoberCMS Rain User plugin not working or redirecting
- → October CMS Custom Mail Layout
- → October CMS - How to correctly route
- → October CMS - Conditionally Load a Different Page
- → Make a Laravel collection into angular array (octobercms)
- → In OctoberCMS how do you find the hint path?
- → How to register middlewares in OctoberCMS plugin?
- → Validating fileupload(image Dimensions) in Backend Octobercms
- → OctoberCMS Fileupload completely destroys my backend
- → How do I call the value from another backed page form and use it on a component in OctoberCms
Ad