Skip to content

Commit 28482a5

Browse files
committed
Merge branch 'main' into poc-auto-update-gh
2 parents 6ed3b48 + 0dffced commit 28482a5

File tree

271 files changed

+18867
-18118
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

271 files changed

+18867
-18118
lines changed

.eslintignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

.eslintrc.yml

Lines changed: 0 additions & 330 deletions
This file was deleted.

.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
test/fixtures/**
2+
package.json
3+
package-lock.json

.prettierrc.js

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
1-
module.exports = {
1+
// prettier.config.js, .prettierrc.js, prettier.config.cjs, or .prettierrc.cjs
2+
3+
/**
4+
* @see https://prettier.io/docs/configuration
5+
* @type {import("prettier").Config}
6+
*/
7+
const config = {
8+
trailingComma: 'es5',
9+
tabWidth: 4,
210
semi: true,
311
singleQuote: true,
4-
bracketSpacing: true,
5-
trailingComma: 'all',
12+
overrides: [
13+
{
14+
files: '*.json',
15+
options: {
16+
useTabs: false,
17+
},
18+
},
19+
],
620
};
21+
22+
module.exports = config;

0 commit comments

Comments
 (0)