dryoma

Results 11 issues of dryoma

Hey there! As an alternative to #131 - is it possible to give a user an ability to modify the set of supported CDNs and libraries locally? The use case...

Hi. When the element is positioned like "inside" a target, i.e. when `attachment` is the same as `targetAttachment`, Tether seems to fail flipping the elements I expected this configuration ```...

Whilie thinking over and discussing [SUIT design principles](https://github.com/suitcss/suit/blob/master/doc/design-principles.md) I found that I might not understand some moments fully. --- 1) > Components should not directly modify the presentation or behaviour...

docs

Inspired by #4 SCSS-lint (sorry to bring it up again; can't help it, since it's a functioning tool and the one seems the most popuar) has [VariableForProperty](https://github.com/brigade/scss-lint/blob/master/lib/scss_lint/linter/README.md#variableforproperty) rule. It does...

New rule 👌

Like in ``` scss .funky { font: 20px/#{$font-size*1.2} fantasy { // operator-no-unspaced should warn weight: bold; } } ```

As the list of our rules grow, we'll of course move it to a separate docs page. But what I thought is maybe we shoud also list all the rules...

Documentation ✍️

The situation so far: PostCSS (with or without postcss-scss plugin) incorrectly parses [Sass nested properties](http://sass-lang.com/documentation/file.SASS_REFERENCE.html#nested_properties). Right now `margin: { left:10px; }` becomes ``` js { type: 'rule', selector: 'margin: ',...

Discussion 👄

Inspired by [Sass Guilelines](https://sass-guidelin.es/#calculations) Top-level numeric calculations should always be wrapped in parentheses. Not only does this requirement dramatically improve readability, it also prevents some edge cases by forcing Sass...

New rule 👌
Questionable 🤔

Inspired by http://sass-guidelin.es/#units ``` scss $value: 42; // Good $length: $value * 1px; // Bad $length: $value + px; ``` Again, not sure if it's going to work out.

New rule 👌
Questionable 🤔

I'm trying to make `gulp-jscs` run on file changes, and - if an error is encountered - just report it, without breaking watch **and** without continuing the stream (e.g., a...