Skip to content

Commit

Permalink
v0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-koran committed Jan 28, 2023
1 parent 669be2d commit ca2630e
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 2 deletions.
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
# prettier-config
Prettier configuration
# `@alexey-koran/prettier-config`

> [Prettier](https://prettier.io) config.
## Usage

**Install**:

```bash
$ pnpm i -D @alexey-koran/prettier-config
```
15 changes: 15 additions & 0 deletions index.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"$schema": "http://json.schemastore.org/prettierrc",
"plugins": ["prettier-plugin-tailwindcss"],
"tailwindConfig": "./tailwind.config.js",
"printWidth": 100,
"bracketSpacing": true,
"bracketSameLine": false,
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"singleAttributePerLine": true,
"jsxSingleQuote": true,
"useTabs": false,
"trailingComma": "all"
}
19 changes: 19 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "prettier-config",
"version": "0.0.1",
"description": "Prettier configuration",
"main": "index.json",
"author": "Alexey-Koran <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/alexey-koran/prettier-config.git"
},
"bugs": {
"url": "https://github.com/alexey-koran/prettier-config/issues"
},
"homepage": "https://github.com/alexey-koran/prettier-config#readme",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
}
}

0 comments on commit ca2630e

Please sign in to comment.