-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Alex Van Camp
committed
Apr 22, 2019
1 parent
bec72c4
commit b406d9e
Showing
8 changed files
with
8,623 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module.exports = { | ||
extends: ['@commitlint/config-conventional'], | ||
}; |
Oops, something went wrong.