Skip to content

Commit f856923

Browse files
committed
style(tsconfig): run prettier across files
1 parent d704e2c commit f856923

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

packages/tsconfig-grafana/README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,35 @@
11
# grafana-tsconfig
2-
> Grafana's [TypeScript](https://typescriptlang.org) config.
32

3+
> Grafana's [TypeScript](https://typescriptlang.org) config.
44
55
## Installation
6+
67
```shell
78
yarn add @grafana/tsconfig --dev
89
```
910

1011
or:
12+
1113
```shell
1214
npm install @grafana/tsconfig --save-dev
1315
```
1416

15-
1617
## Usage
18+
1719
```json
1820
{
1921
"extends": "@grafana/tsconfig"
2022
}
2123
```
2224

2325
or:
26+
2427
```json
2528
{
2629
"extends": "@grafana/tsconfig/base.json"
2730
}
2831
```
2932

30-
3133
## Publishing
3234

3335
Publishing is handled by github actions which is triggered by a merge to master that contains a change to the version property in the `package.json` file. You can either do that manually or use the command below to version bump, commit and tag.
@@ -38,6 +40,6 @@ npm version [<newversion> | major | minor | patch ]
3840

3941
Also be sure to update any official packages that depend on this with fixes and version increases.
4042

41-
4243
## Versioning
43-
It's probable that *any* change will be a breaking one, so it's best to stick to major version releases.
44+
45+
It's probable that _any_ change will be a breaking one, so it's best to stick to major version releases.

packages/tsconfig-grafana/base.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,7 @@
77
"forceConsistentCasingInFileNames": true,
88
"importHelpers": true,
99
"jsx": "react",
10-
"lib": [
11-
"dom",
12-
"dom.iterable",
13-
"es2022"
14-
],
10+
"lib": ["dom", "dom.iterable", "es2022"],
1511
"module": "esnext",
1612
"moduleResolution": "node",
1713
"noEmitHelpers": true,

0 commit comments

Comments
 (0)