Skip to content

Commit c57d49a

Browse files
committed
Remove trailingComma none from prettier config
1 parent f12ad2f commit c57d49a

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.prettierrc.json

-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@
22
"semi": false,
33
"singleQuote": true,
44
"jsxSingleQuote": true,
5-
"trailingComma": "none",
65
"endOfLine": "lf"
76
}

ava.config.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ export default () => {
44
files: ['**/*.test.ts', '!package/**/*'],
55
environmentVariables: {
66
// UPSTREAM: https://nodejs.org/docs/latest-v18.x/api/esm.html#loaders
7-
NODE_NO_WARNINGS: '1'
7+
NODE_NO_WARNINGS: '1',
88
},
99
extensions: {
10-
ts: 'module'
10+
ts: 'module',
1111
},
12-
nodeArguments: ['--loader=tsx']
12+
nodeArguments: ['--loader=tsx'],
1313
}
1414
}

examples/todo.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ export const builder: Builder = {
1414
x: {
1515
type: 'string',
1616
default: 'TODO',
17-
describe: 'TODO'
18-
}
17+
describe: 'TODO',
18+
},
1919
}
2020

2121
export const handler: Handler<Options> = async ({ x, logger }) => {

0 commit comments

Comments
 (0)