Skip to content

Commit eab28e6

Browse files
committed
chore: format files
1 parent 22d538f commit eab28e6

File tree

7 files changed

+11
-15
lines changed

7 files changed

+11
-15
lines changed

.github/workflows/config-prettier.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: config-prettier
22
on:
33
push:
44
paths:
5-
- 'config-prettier/**'
6-
- '.github/workflows/config-prettier.yaml'
5+
- "config-prettier/**"
6+
- ".github/workflows/config-prettier.yaml"
77

88
jobs:
99
pipe:
@@ -13,4 +13,4 @@ jobs:
1313
uses: openmfp/gha/.github/workflows/pipeline-node-module.yml@main
1414
secrets: inherit
1515
with:
16-
workingDirectory: 'config-prettier'
16+
workingDirectory: "config-prettier"

.github/workflows/eslint-config-typescript.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: eslint-config-typescript
22
on:
33
push:
44
paths:
5-
- 'eslint-config-typescript/**'
6-
- '.github/workflows/eslint-config-typescript.yaml'
5+
- "eslint-config-typescript/**"
6+
- ".github/workflows/eslint-config-typescript.yaml"
77

88
jobs:
99
pipe:
@@ -13,4 +13,4 @@ jobs:
1313
uses: openmfp/gha/.github/workflows/pipeline-node-module.yml@main
1414
secrets: inherit
1515
with:
16-
workingDirectory: 'eslint-config-typescript'
16+
workingDirectory: "eslint-config-typescript"

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
# About
22

33
This repository offers reusable TypeScript configuration to be used for services which are TypeScript-based (e.g. backend services building with NestJS, or plain TypeScript projects).
4-

config-prettier/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ const config = {
1010
plugins: ["@trivago/prettier-plugin-sort-imports"],
1111
// for @trivago/prettier-plugin-sort-imports
1212
importOrderParserPlugins: ["typescript", "decorators"],
13-
"importOrderSortSpecifiers": true
13+
importOrderSortSpecifiers: true,
1414
};
1515

16-
1716
export default config;

config-prettier/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openmfp/config-prettier",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "A shared configuration for prettier to be used across openmfp frontends",
55
"main": "index.js",
66
"files": [

eslint-config-typescript/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ module.exports = {
1111
"eslint:recommended",
1212
"plugin:@typescript-eslint/recommended",
1313
"plugin:@typescript-eslint/recommended-requiring-type-checking",
14-
'plugin:prettier/recommended',
15-
'prettier'
14+
"plugin:prettier/recommended",
15+
"prettier",
1616
],
1717
},
1818
{

renovate.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3-
"extends": [
4-
"local>openmfp/.github:renovate-config"
5-
]
3+
"extends": ["local>openmfp/.github:renovate-config"]
64
}

0 commit comments

Comments
 (0)