Skip to content

Commit 43bff3c

Browse files
committed
chore(prettier): fix prettier formatting arc
1 parent f4276b5 commit 43bff3c

File tree

49 files changed

+3481
-3550
lines changed

Some content is hidden

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

49 files changed

+3481
-3550
lines changed

.editorconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors or IDEs
3+
# http://editorconfig.org
4+
root = true
5+
6+
[*]
7+
indent_style = space
8+
indent_size = 2
9+
end_of_line = lf
10+
charset = utf-8
11+
trim_trailing_whitespace = true
12+
insert_final_newline = true
13+
14+
[*.md]
15+
trim_trailing_whitespace = false

.eslintrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,4 +166,4 @@ overrides:
166166
'private-instance-method',
167167
],
168168
},
169-
]
169+
]

.github/workflows/CI.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
# docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-alpine
9898
# build: |
9999
# set -e &&
100-
# rustup target add aarch64-unknown-linux-musl &&
100+
# rustup target add aarch64-unknown-linux-musl &&
101101
# yarn build --target aarch64-unknown-linux-musl
102102
# env:
103103
# CXXFLAGS: '--stdlib=libc++ -L/usr/lib/llvm-18/lib -static'
@@ -258,7 +258,6 @@ jobs:
258258
run: ls -R .
259259
shell: bash
260260

261-
262261
test-linux-x64-gnu-binding:
263262
name: Test bindings on Linux-x64-gnu - node@${{ matrix.node }}
264263
needs:

.github/workflows/book.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ jobs:
2626
if: ${{ github.ref == 'refs/heads/main' }}
2727
with:
2828
github_token: ${{ secrets.GITHUB_TOKEN }}
29-
publish_dir: ./book/book
29+
publish_dir: ./book/book

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
target
2+
.yarn

.taplo.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
exclude = ["node_modules/**/*.toml"]
2+
3+
# https://taplo.tamasfe.dev/configuration/formatter-options.html
4+
[formatting]
5+
align_entries = true
6+
indent_tables = true
7+
reorder_keys = true

.vscode/settings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"rust-analyzer.procMacro.ignored": { "napi-derive": ["napi"] }
3-
}
2+
"rust-analyzer.procMacro.ignored": { "napi-derive": ["napi"] }
3+
}

.yarn/releases/yarn-3.6.4.cjs

Lines changed: 874 additions & 0 deletions
Large diffs are not rendered by default.

.yarn/releases/yarn-4.3.1.cjs

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

.yarnrc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
nodeLinker: node-modules
22

3-
npmAuditRegistry: "https://registry.npmjs.org"
3+
npmAuditRegistry: https://registry.npmjs.org
44

5-
yarnPath: .yarn/releases/yarn-4.3.1.cjs
5+
yarnPath: .yarn/releases/yarn-3.6.4.cjs

0 commit comments

Comments
 (0)