Skip to content

Commit b406d9e

Browse files
feat: initial commit
1 parent bec72c4 commit b406d9e

File tree

8 files changed

+8623
-2
lines changed

8 files changed

+8623
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

README.md

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,24 @@
1-
# stylelint-config
2-
Our re-usable config for the Stylelint CSS linter.
1+
# Support Class' stylelint-config
2+
3+
> Our re-usable config for the Stylelint CSS linter.
4+
5+
## Usage
6+
7+
1. Install this config as a devDependency:
8+
9+
```bash
10+
npm i -D @supportclass/stylelint-config
11+
```
12+
13+
2. Extend our config in your own stylelint config:
14+
15+
```json
16+
{
17+
"extends": [
18+
"@supportclass/stylelint-config"
19+
],
20+
"rules": {
21+
"indentation": "tab"
22+
}
23+
}
24+
```

azure-pipelines.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
variables:
2+
- group: Publishing Secrets
3+
4+
trigger:
5+
- master
6+
7+
pool:
8+
vmImage: 'Ubuntu-16.04'
9+
10+
steps:
11+
- script: npm i
12+
displayName: 'Install npm dependencies'
13+
14+
- script: npx semantic-release
15+
displayName: 'Release'
16+
env:
17+
GH_TOKEN: $(GH_TOKEN)
18+
NPM_TOKEN: $(NPM_TOKEN)

commitlint.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
extends: ['@commitlint/config-conventional'],
3+
};

0 commit comments

Comments
 (0)