Yegor

Results 8 issues of Yegor

Right now we can redefine html-template that showed for unsupported browsers via ```template`` option which is a string. But this is not convenient. Better if it will be not only...

**Feature request** Right now nested properties are not removed. Is it possible to detect deadProperties? **`terser` input** ```js const messages = { require: "This field is required", min: "Min length...

enhancement
compress

![image](https://user-images.githubusercontent.com/25006810/154424271-edbec66b-d98b-42ac-aae5-92bf2af4ec07.png) Expected behavior: rule `"scss/at-import-partial-extension-whitelist": ["scss"]` suppress errors for *.scss imports Actual behavior: rule `"scss/at-import-partial-extension-whitelist": ["scss"]` doesn't affect on error at all version: 4.1.0

## Search Terms helper {root} {workspace} in tsconfig.json ## Suggestion I have the following project structure ``` tsconfig.json >folder >folder >folder tsconfig.json => { "extends": "../../../tsconfig.json" ... } ``` I...

Suggestion
Awaiting More Feedback

The following code demonstrates the issue ```scss /* ./src/styles/shared.scss */ .btn { font: inherit; } ``` ```tsx // ./src/elements/buttons/button.tsx import shared from "@/styles/shared.scss"; export default function Button() { // css-modules...

### How To Reproduce: 1) create a basic project with webpack 4 and postcss 2) for postcss-normalize set ```forceImport: true``` option 3) in entry file add several imports "[someName].css" 4)...

One of the important feature of css-vars is ability to re-define value of existed css variable. Lets assume I need to rewrite `--base-bg: #fff;` So when I type `--` I'm...

Webpack css-loader introduced breaking change from version 7.0: https://github.com/webpack-contrib/css-loader/releases/tag/v7.0.0 **Before:** ```js import style from "./style.css"; console.log(style.myClass); ``` **After:** ```js import * as style from "./style.css"; console.log(style.myClass); ``` **Expected**: eslint-plugin-css-modules throws...