# test-stylelint-config

> This package provides a wrapper for stylelint styling rules.

Latest version **0.0.2** (published 2022-01-12) · ISC license · 0 weekly downloads

## Install

```sh
npm install test-stylelint-config
pnpm add test-stylelint-config
yarn add test-stylelint-config
bun add test-stylelint-config
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.2 |
| Published | 2022-01-12 |
| First published | 2022-01-12 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 7 |
| Unpacked size | 1.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | ri.sinan.baymammadli |

## Links

- npm: https://www.npmjs.com/package/test-stylelint-config
- npm.io page: https://npm.io/package/test-stylelint-config

## Dependencies (7)

- [postcss](https://npm.io/package/postcss.md) ^8.4.5
- [stylelint](https://npm.io/package/stylelint.md) ^14.2.0
- [stylelint-scss](https://npm.io/package/stylelint-scss.md) ^4.1.0
- [stylelint-config-prettier](https://npm.io/package/stylelint-config-prettier.md) ^9.0.3
- [stylelint-config-standard](https://npm.io/package/stylelint-config-standard.md) ^24.0.0
- [stylelint-config-standard-scss](https://npm.io/package/stylelint-config-standard-scss.md) ^3.0.0
- [stylelint-no-unsupported-browser-features](https://npm.io/package/stylelint-no-unsupported-browser-features.md) ^5.0.2

## Recent versions

- 0.0.2 (latest) — 2022-01-12
- 0.0.1 — 2022-01-12

## README

# @sinanbaymammadli/stylelint-config

This package provides a wrapper for stylelint styling rules.

## Install

```bash
yarn add -D @sinanbaymammadli/stylelint-config
```

Install with npm:

```bash
npm install -D @sinanbaymammadli/stylelint-config
```

## Usage

Create `stylint.config.js` file and add:

```js
module.exports = {
  extends: ["@sinanbaymammadli/stylelint-config"],
};
```

## Command line scripts

In your `package.json` file:

```json
{
  "scripts": {
    "lint:style": "stylelint \"**/*.{css,scss}\" --cache",
    "lint:style-fix": "stylelint \"**/*.{css,scss}\" --fix"
  }
}
```

## VSCode settings

Install stylint extension add add this lines to `settings.json` file:

```json
{
  "stylelint.enable": true,
  "stylelint.validate": ["css", "scss"],
  "editor.codeActionsOnSave": {
    "source.fixAll": true
  }
}
```

---
_Source: https://npm.io/package/test-stylelint-config · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
