mirror of
https://github.com/ivuorinen/base-configs.git
synced 2026-01-26 11:14:00 +00:00
feat(package): new pkg: @ivuorinen/base-configs (#121)
This commit is contained in:
1
packages/base-configs/.browserslistrc
Normal file
1
packages/base-configs/.browserslistrc
Normal file
@@ -0,0 +1 @@
|
|||||||
|
extends @ivuorinen/browserslist-config
|
||||||
5
packages/base-configs/.commitlintrc.json
Normal file
5
packages/base-configs/.commitlintrc.json
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"extends": [
|
||||||
|
"@ivuorinen/commitlint-config"
|
||||||
|
]
|
||||||
|
}
|
||||||
5
packages/base-configs/.eslintrc.json
Normal file
5
packages/base-configs/.eslintrc.json
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"extends": [
|
||||||
|
"@ivuorinen"
|
||||||
|
]
|
||||||
|
}
|
||||||
3
packages/base-configs/.markdownlint.json
Normal file
3
packages/base-configs/.markdownlint.json
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"extends": "@ivuorinen/markdownlint-config"
|
||||||
|
}
|
||||||
9
packages/base-configs/.prettierrc.js
Normal file
9
packages/base-configs/.prettierrc.js
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
import config from "@ivuorinen/prettier-config";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
...config,
|
||||||
|
editorconfig: true,
|
||||||
|
printWidth: 80,
|
||||||
|
proseWrap: "always"
|
||||||
|
};
|
||||||
|
|
||||||
5
packages/base-configs/.releaserc.json
Normal file
5
packages/base-configs/.releaserc.json
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"extends": [
|
||||||
|
"@ivuorinen/semantic-release-config"
|
||||||
|
]
|
||||||
|
}
|
||||||
21
packages/base-configs/LICENSE
Normal file
21
packages/base-configs/LICENSE
Normal 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.
|
||||||
21
packages/base-configs/README.md
Normal file
21
packages/base-configs/README.md
Normal 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.
|
||||||
37
packages/base-configs/package.json
Normal file
37
packages/base-configs/package.json
Normal 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"
|
||||||
|
}
|
||||||
|
}
|
||||||
5501
packages/base-configs/yarn.lock
Normal file
5501
packages/base-configs/yarn.lock
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user