-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(config): convert some to json, fix broken syntax and run pretti…
…er (#405) * chore: convert some config files to json * chore(config): fix and reformat json file
- Loading branch information
Showing
11 changed files
with
115 additions
and
129 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,3 @@ | ||
{ | ||
"extends": ["@commitlint/config-conventional"] | ||
} |
This file was deleted.
Oops, something went wrong.
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,82 @@ | ||
{ | ||
"git": { | ||
"commitMessage": "chore: release ${version}", | ||
"tagName": "v${version}" | ||
}, | ||
"npm": { | ||
"publish": true | ||
}, | ||
"github": { | ||
"release": true | ||
}, | ||
"plugins": { | ||
"@release-it/conventional-changelog": { | ||
"infile": "CHANGELOG.md", | ||
"preset": { | ||
"name": "conventionalcommits", | ||
"types": [ | ||
{ | ||
"type": "chore", | ||
"section": "Others 🔧", | ||
"hidden": false | ||
}, | ||
{ | ||
"type": "revert", | ||
"section": "Reverts ◀", | ||
"hidden": false | ||
}, | ||
{ | ||
"type": "feat", | ||
"section": "Features 🔥", | ||
"hidden": false | ||
}, | ||
{ | ||
"type": "fix", | ||
"section": "Bug Fixes 🛠", | ||
"hidden": false | ||
}, | ||
{ | ||
"type": "improvement", | ||
"section": "Feature Improvements 🛠", | ||
"hidden": false | ||
}, | ||
{ | ||
"type": "docs", | ||
"section": "Docs 📃", | ||
"hidden": false | ||
}, | ||
{ | ||
"type": "style", | ||
"section": "Styling 🎨", | ||
"hidden": false | ||
}, | ||
{ | ||
"type": "refactor", | ||
"section": "Code Refactoring 🖌", | ||
"hidden": false | ||
}, | ||
{ | ||
"type": "perf", | ||
"section": "Performance Improvements 🏎", | ||
"hidden": false | ||
}, | ||
{ | ||
"type": "test", | ||
"section": "Tests 🧪", | ||
"hidden": false | ||
}, | ||
{ | ||
"type": "build", | ||
"section": "Build System 🏗", | ||
"hidden": false | ||
}, | ||
{ | ||
"type": "ci", | ||
"section": "CI 🛠", | ||
"hidden": false | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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,21 @@ | ||
{ | ||
"processors": [ | ||
[ | ||
"stylelint-processor-styled-components", | ||
{ | ||
"moduleName": "@emotion/styled" | ||
} | ||
] | ||
], | ||
"extends": [ | ||
"stylelint-config-standard", | ||
"stylelint-config-styled-components", | ||
"stylelint-config-prettier" | ||
], | ||
"rules": { | ||
"declaration-empty-line-before": null, | ||
"comment-empty-line-before": null, | ||
"block-no-empty": null, | ||
"value-keyword-case": null | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -4,9 +4,7 @@ | |
"private": false, | ||
"description": "Beautiful and accessible drag and drop for lists with React", | ||
"author": "Alex Reardon <[email protected]>", | ||
"maintainers": [ | ||
"Gabriel Santerre <[email protected]>" | ||
], | ||
"maintainers": ["Gabriel Santerre <[email protected]>"], | ||
"keywords": [ | ||
"drag and drop", | ||
"dnd", | ||
|
@@ -30,10 +28,7 @@ | |
"module": "dist/dnd.esm.js", | ||
"types": "dist/dnd.d.ts", | ||
"sideEffects": false, | ||
"files": [ | ||
"/dist", | ||
"/src" | ||
], | ||
"files": ["/dist", "/src"], | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
|
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 |
---|---|---|
|
@@ -7,5 +7,5 @@ | |
"paths": { | ||
"@react-forked/dnd": ["../src/index.ts"] | ||
} | ||
}, | ||
} | ||
} |
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
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