Skip to content

Commit c5af015

Browse files
author
devgioele
committed
initial commit
0 parents  commit c5af015

5 files changed

Lines changed: 100 additions & 0 deletions

File tree

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

index.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"$schema": "http://json.schemastore.org/prettierrc",
3+
"trailingComma": "none",
4+
"semi": false,
5+
"singleQuote": true
6+
}

package-lock.json

Lines changed: 17 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "@aboutbits/prettier-config",
3+
"version": "0.0.1",
4+
"description": "AboutBits' prettier config",
5+
"exports": "./index.json",
6+
"engines": {
7+
"npm": ">=8",
8+
"node": ">=16"
9+
},
10+
"scripts": {
11+
"version": "git add -A src",
12+
"postversion": "git push && git push --tags"
13+
},
14+
"repository": {
15+
"type": "git",
16+
"url": "git+https://github.com/aboutbits/prettier-config"
17+
},
18+
"keywords": [
19+
"prettier-config",
20+
"prettier"
21+
],
22+
"author": "AboutBits",
23+
"license": "MIT",
24+
"bugs": {
25+
"url": "https://github.com/aboutbits/prettier-config/issues"
26+
},
27+
"homepage": "https://github.com/aboutbits/prettier-config"
28+
}

readme.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# @aboutbits/prettier-config
2+
3+
[![npm package](https://badge.fury.io/js/%40aboutbits%2Fprettier-config.svg)](https://badge.fury.io/js/%40aboutbits%2Fprettier-config)
4+
[![license](https://img.shields.io/github/license/aboutbits/prettier-config)](https://github.com/aboutbits/prettier-config/blob/main/license.md)
5+
6+
AboutBit's [prettier](https://prettier.io/) config
7+
8+
## Usage
9+
10+
Install the package:
11+
12+
```sh
13+
npm i -D @aboutbits/prettier-config
14+
```
15+
16+
Edit `package.json`:
17+
```json
18+
{
19+
// ...
20+
"prettier": "@aboutbits/prettier-config"
21+
}
22+
```
23+
24+
## Publish
25+
26+
To publish the package commit all changes and push them to main. Then run one of the following commands locally:
27+
28+
```sh
29+
npm version patch
30+
npm version minor
31+
npm version major
32+
```
33+
34+
## Information
35+
36+
AboutBits is a company based in South Tyrol, Italy. You can find more information about us on [our website](https://aboutbits.it).
37+
38+
### Support
39+
40+
For support, please contact [info@aboutbits.it](mailto:info@aboutbits.it).
41+
42+
### Credits
43+
44+
- [All Contributors](../../contributors)
45+
46+
### License
47+
48+
The MIT License (MIT). Please see the [license file](license.md) for more information.

0 commit comments

Comments
 (0)