generated from adam-sokolowski/sass-skeleton
-
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
0 parents
commit e4cf714
Showing
8 changed files
with
2,465 additions
and
0 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,22 @@ | ||
# OS | ||
.DS_Store | ||
|
||
# node.js & npm | ||
node_modules | ||
.nyc_output | ||
npm-debug.log | ||
|
||
# Editor files | ||
/.project | ||
/.settings | ||
/.idea | ||
/.vscode | ||
|
||
# coverage | ||
coverage | ||
|
||
package-lock.json | ||
yarn-lock.json | ||
|
||
# dist | ||
dist |
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,13 @@ | ||
coverage | ||
node_modules | ||
src | ||
.editorconfig | ||
.gitignore | ||
.npmignore | ||
.versionrc.json | ||
.eslintrc.js | ||
.prettierrc.js | ||
jest.config.js | ||
tsconfig.json | ||
yarn.lock | ||
CONTRIBUTING.md |
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,7 @@ | ||
module.exports = { | ||
semi: true, | ||
trailingComma: "all", | ||
singleQuote: true, | ||
printWidth: 120, | ||
tabWidth: 4 | ||
}; |
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,10 @@ | ||
{ | ||
"types": [ | ||
{"type": "feat", "section": "New features"}, | ||
{"type": "fix", "section": "Bug fixes"}, | ||
{"type": "docs", "section": "Documentation"}, | ||
{"type": "refactor", "section": "Code refactor"}, | ||
{"type": "perf", "section": "Performance improvements"}, | ||
{"type": "test", "section": "Unit tests"} | ||
] | ||
} |
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,2 @@ | ||
# sass-skeleton | ||
Skeleton for sass libraries |
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,37 @@ | ||
{ | ||
"name": "@adso/sass-skeleton", | ||
"version": "1.0.0", | ||
"description": "Skeleton for sass libraries", | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]:adam-sokolowski/sass-skeleton.git" | ||
}, | ||
"keywords": [ | ||
"sass", | ||
"skeleton" | ||
], | ||
"main": "dist/_index.scss", | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"sass:lint": "sass-lint 'src/**/*.scss' -v -q", | ||
"release:patch": "standard-version --release-as patch", | ||
"release:minor": "standard-version --release-as minor", | ||
"reset:githooks": "rm -rf ./.git/hooks/* && rm -rf node_modules/husky && yarn install --check-files" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": [ | ||
"yarn sass:lint" | ||
] | ||
} | ||
}, | ||
"author": "Adam Sokołowski <[email protected]>", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"husky": "4.2.3", | ||
"sass-lint": "1.13.1", | ||
"standard-version": "7.1.0" | ||
} | ||
} |
Empty file.
Oops, something went wrong.