@theholocron/stylelint-config 3.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -0
- package/package.json +25 -0
- package/stylelint.config.js +9 -0
package/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# StyleLint Config
|
|
2
|
+
|
|
3
|
+
A [StyleLint configuration](https://stylelint.io/user-guide/configure/) for writing well-formed CSS.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install --save-dev @theholocron/stylelint-config
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
In your project `stylelint.config.js` add the following:
|
|
14
|
+
|
|
15
|
+
```javascript
|
|
16
|
+
import theHolocron from "@theholocron/stylelint-config";
|
|
17
|
+
|
|
18
|
+
export default [...theHolocron];
|
|
19
|
+
```
|
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@theholocron/stylelint-config",
|
|
3
|
+
"version": "3.2.1",
|
|
4
|
+
"description": "A StyleLint configuration for writing well-formed CSS within the Galaxy.",
|
|
5
|
+
"homepage": "https://github.com/theholocron/configs/tree/main/packages/lint-staged-config#readme",
|
|
6
|
+
"bugs": "https://github.com/theholocron/configs/issues",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/theholocron/configs.git"
|
|
10
|
+
},
|
|
11
|
+
"license": "GPL-3.0",
|
|
12
|
+
"author": "Newton Koumantzelis",
|
|
13
|
+
"type": "module",
|
|
14
|
+
"main": "stylelint.config.js",
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"stylelint": "^16.10.0",
|
|
17
|
+
"stylelint-config-standard": "^36.0.1",
|
|
18
|
+
"stylelint-config-standard-scss": "^13.1.0"
|
|
19
|
+
},
|
|
20
|
+
"publishConfig": {
|
|
21
|
+
"access": "public"
|
|
22
|
+
},
|
|
23
|
+
"releases": "https://github.com/theholocron/configs/releases",
|
|
24
|
+
"wiki": "https://github.com/theholocron/configs/wiki"
|
|
25
|
+
}
|