An open API service indexing awesome lists of open source software.

https://github.com/ourstudio-se/frontend-work-test-scss

Front-end work test based on Sass
https://github.com/ourstudio-se/frontend-work-test-scss

html scss work-test

Last synced: 8 months ago
JSON representation

Front-end work test based on Sass

Awesome Lists containing this project

README

          

# Front-end work test (scss)

Front-end work test based on Sass.

## Writing CSS

The CSS is built using Sass and can be found in `test/scss`. The SCSS in compiled into CSS using `Dart Sass`. Compile the SCSS in this project into CSS by running the following command.

```bash
npm run sass
```

### Sass formatting

This project uses [Prettier](https://prettier.io/) to format the code. To format all files, run the following command.

```bash
npm run prettier
```

### Lint

This project uses [Stylelint](https://stylelint.io) to lint the _scss_. The settings is based on `stylelint-config-standard-scss`. To run the lint, run the following command.

```bash
npm run stylelint
```