- What is Sass indented syntax?
- The original Sass format: no braces, no semicolons, indentation defines nesting (like Python). Shorter but less tolerant of copy-paste. Modern projects usually pick SCSS instead.
- When should I use SASS over SCSS?
- Rarely in new code. SASS is common in Ruby-heritage projects and some design-system codebases that prize conciseness.
- Does the output round-trip back to CSS cleanly?
- Yes — run SASS to CSS on the result and you get your original stylesheet back (minus comments and with formatting normalized).
- What about mixed @include and @use?
- @use is the modern import (with namespacing). The converter uses @use by default; toggle to @import for pre-Dart-Sass-1.23 projects.