Skip to content

Commit

Permalink
feat: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Van Camp committed Apr 22, 2019
1 parent bec72c4 commit b406d9e
Show file tree
Hide file tree
Showing 8 changed files with 8,623 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
26 changes: 24 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,24 @@
# stylelint-config
Our re-usable config for the Stylelint CSS linter.
# Support Class' stylelint-config

> Our re-usable config for the Stylelint CSS linter.
## Usage

1. Install this config as a devDependency:

```bash
npm i -D @supportclass/stylelint-config
```

2. Extend our config in your own stylelint config:

```json
{
"extends": [
"@supportclass/stylelint-config"
],
"rules": {
"indentation": "tab"
}
}
```
18 changes: 18 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
variables:
- group: Publishing Secrets

trigger:
- master

pool:
vmImage: 'Ubuntu-16.04'

steps:
- script: npm i
displayName: 'Install npm dependencies'

- script: npx semantic-release
displayName: 'Release'
env:
GH_TOKEN: $(GH_TOKEN)
NPM_TOKEN: $(NPM_TOKEN)
3 changes: 3 additions & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
extends: ['@commitlint/config-conventional'],
};
Loading

0 comments on commit b406d9e

Please sign in to comment.