feat(package): new pkg: @ivuorinen/base-configs (#121)

This commit is contained in:
Ismo Vuorinen
2023-10-30 13:31:47 +02:00
committed by GitHub
parent 83d10c71dd
commit feddfcfdba
10 changed files with 5608 additions and 0 deletions

View File

@@ -0,0 +1 @@
extends @ivuorinen/browserslist-config

View File

@@ -0,0 +1,5 @@
{
"extends": [
"@ivuorinen/commitlint-config"
]
}

View File

@@ -0,0 +1,5 @@
{
"extends": [
"@ivuorinen"
]
}

View File

@@ -0,0 +1,3 @@
{
"extends": "@ivuorinen/markdownlint-config"
}

View File

@@ -0,0 +1,9 @@
import config from "@ivuorinen/prettier-config";
export default {
...config,
editorconfig: true,
printWidth: 80,
proseWrap: "always"
};

View File

@@ -0,0 +1,5 @@
{
"extends": [
"@ivuorinen/semantic-release-config"
]
}

View File

@@ -0,0 +1,21 @@
MIT License
Copyright (c) 2023 Ismo Vuorinen
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -0,0 +1,21 @@
# `@ivuorinen/base-configs`
This is a meta package for all my base configs.
You can find all the individual configs in the `packages` folder.
The main reason for this package is to make it easier to use these
configs in other projects, and to update them all at once.
No more pull requests to update all the configs one at a time!
## Installation
```bash
npm install @ivuorinen/base-configs --save-dev
yarn add @ivuorinen/base-configs --dev
```
## License
MIT License. See [LICENSE](LICENSE) for more info.

View File

@@ -0,0 +1,37 @@
{
"name": "@ivuorinen/base-configs",
"version": "1.0.0",
"description": "ivuorinen's shareable configurations meta package",
"author": {
"name": "Ismo Vuorinen",
"url": "https://github.com/ivuorinen"
},
"bugs": {
"url": "https://github.com/ivuorinen/base-configs/issues"
},
"engines": {
"node": ">=18"
},
"homepage": "https://github.com/ivuorinen/base-configs/tree/main/packages/base-configs#readme",
"keywords": [
"base-config",
"config",
"ivuorinen"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivuorinen/base-configs.git"
},
"dependencies": {
"@ivuorinen/browserslist-config": "^0.2",
"@ivuorinen/commitlint-config": "^0.2",
"@ivuorinen/eslint-config": "^0.3",
"@ivuorinen/markdownlint-config": "^0.2",
"@ivuorinen/prettier-config": "^0.2",
"@ivuorinen/semantic-release-config": "^0.2"
}
}

File diff suppressed because it is too large Load Diff