Add coexistence checks to all enqueue methods to prevent loading both React and Grid.js assets simultaneously. Changes: - ReactAdmin.php: Only enqueue React assets when ?react=1 - Init.php: Skip Grid.js when React active on admin pages - Form.php, Coupon.php, Access.php: Restore classic assets when ?react=0 - Customer.php, Product.php, License.php: Add coexistence checks Now the toggle between Classic and React versions works correctly. Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
54 lines
2.1 KiB
Markdown
54 lines
2.1 KiB
Markdown
# stylelint-config-recommended-scss
|
|
|
|
[](https://www.npmjs.org/package/stylelint-config-recommended-scss)
|
|
[](https://github.com/stylelint-scss/stylelint-config-recommended-scss/actions?workflow=CI)
|
|
[](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github)
|
|
[](https://npmcharts.com/compare/stylelint-config-recommended-scss)
|
|
|
|
> The recommended shareable SCSS config for stylelint.
|
|
|
|
This config:
|
|
|
|
- extends the [`stylelint-config-recommended` shared config](https://github.com/stylelint/stylelint-config-recommended) and configures its rules for SCSS
|
|
- bundles the [`stylelint-scss` plugin pack](https://github.com/stylelint-scss/stylelint-scss) and turns on its rules that check for possible errors
|
|
- bundles the [`postcss-scss` custom syntax](https://github.com/postcss/postcss-scss) and configures it
|
|
|
|
This config is extended by the [`stylelint-config-standard-scss` shared config](https://github.com/stylelint-scss/stylelint-config-standard-scss). That config is better suited to most users as it also turns on the stylistic rules in the [`stylelint-scss` plugin pack](https://github.com/stylelint-scss/stylelint-scss).
|
|
|
|
To see the rules that this config uses, please read the [config itself](/index.js).
|
|
|
|
## Installation
|
|
|
|
```shell
|
|
npm install --save-dev stylelint-config-recommended-scss
|
|
```
|
|
|
|
## Usage
|
|
|
|
Set your `stylelint` config to:
|
|
|
|
```json
|
|
{
|
|
"extends": "stylelint-config-recommended-scss"
|
|
}
|
|
```
|
|
|
|
### Extending the config
|
|
|
|
Simply add a `"rules"` key to your config, then add your overrides and additions there.
|
|
|
|
For example, to turn off the `scss/at-if-no-null` rule:
|
|
|
|
```json
|
|
{
|
|
"extends": "stylelint-config-recommended-scss",
|
|
"rules": {
|
|
"scss/at-if-no-null": null
|
|
}
|
|
}
|
|
```
|
|
|
|
## [Changelog](CHANGELOG.md)
|
|
|
|
## [License](LICENSE)
|