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
- Host: GitHub
- URL: https://github.com/ourstudio-se/frontend-work-test-scss
- Owner: ourstudio-se
- Created: 2023-03-16T13:29:09.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-20T10:00:13.000Z (about 3 years ago)
- Last Synced: 2025-04-25T14:58:15.039Z (about 1 year ago)
- Topics: html, scss, work-test
- Language: SCSS
- Homepage:
- Size: 956 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```