Skip to content
This repository has been archived by the owner on Sep 13, 2024. It is now read-only.

Ran the SASS migration tool on division so deprecation warnings stop … #1110

Merged
merged 1 commit into from
Feb 22, 2022

Conversation

enatario
Copy link
Contributor

Merge master to main

(We should delete master)

} @else {
$v1: ($v1 / $ratio);
$v1: math.div($v1, $ratio);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unexpected duplicate dollar variable $v1 scss/no-duplicate-dollar-variables

$value: $v2;
$v2: ($v2 / $ratio);
$v2: math.div($v2, $ratio);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unexpected duplicate dollar variable $v2 scss/no-duplicate-dollar-variables

@@ -102,15 +104,15 @@
@if $increment < 0 {
// adjust $v2 to just below $v1
@if $double-stranded {
$v2: ($v2 / $ratio);
$v2: math.div($v2, $ratio);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unexpected duplicate dollar variable $v2 scss/no-duplicate-dollar-variables

@@ -78,7 +80,7 @@

// scale $v2 to just above $v1
@while $v2 > $v1 {
$v2: ($v2 / $ratio); // will be off-by-1
$v2: math.div($v2, $ratio); // will be off-by-1
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unexpected duplicate dollar variable $v2 scss/no-duplicate-dollar-variables

@enatario enatario merged commit b3e2cc5 into main Feb 22, 2022
setphen added a commit that referenced this pull request Feb 22, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants