Skip to content

Commit f3a244b

Browse files
authored
[chore] [all] license year (#24)
* chore: update license year * chore: sort vscode setting and mv cspell words
1 parent 0392587 commit f3a244b

127 files changed

Lines changed: 151 additions & 165 deletions

File tree

Some content is hidden

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

.vscode/settings.json

Lines changed: 26 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,25 @@
11
{
2-
"eslint.nodePath": "config/eslint-config/node_modules/eslint",
3-
"eslint.workingDirectories": [
4-
{
5-
"mode": "auto"
6-
}
2+
"cSpell.diagnosticLevel": "Warning",
3+
"cSpell.words": [
4+
"arktype",
5+
"autoinstallers",
6+
"Bytedance",
7+
"cozeloop",
8+
"doubao",
9+
"kwargs",
10+
"langchain",
11+
"langgraph",
12+
"langsmith",
13+
"loggable",
14+
"packagejson",
15+
"prefault",
16+
"preinstall",
17+
"ptaas",
18+
"remeda",
19+
"traceparent",
20+
"tracestate",
21+
"vikingdb",
22+
"websockets"
723
],
824
"prettier.prettierPath": "config/eslint-config/node_modules/prettier",
925
"editor.tabSize": 2,
@@ -18,9 +34,14 @@
1834
"source.fixAll.eslint": "explicit",
1935
"source.organizeImports": "never"
2036
},
37+
"editor.semanticHighlighting.enabled": false,
38+
"eslint.probe": ["javascript", "typescript"],
2139
"eslint.format.enable": true,
2240
"eslint.lintTask.enable": true,
41+
"eslint.nodePath": "config/eslint-config/node_modules/eslint",
42+
"eslint.workingDirectories": [{ "mode": "auto" }],
2343
"search.followSymlinks": false,
44+
"search.useIgnoreFiles": true,
2445
"search.exclude": {
2546
"**/node_modules": true,
2647
"**/pnpm-lock.yaml": true,
@@ -52,13 +73,9 @@
5273
"**/pnpm-lock.yaml": "plaintext",
5374
"**/*.yml": "yaml"
5475
},
55-
"search.useIgnoreFiles": true,
5676
"files.eol": "\n",
5777
"files.trimTrailingWhitespace": true,
5878
"files.insertFinalNewline": true,
59-
"cSpell.diagnosticLevel": "Warning",
60-
"eslint.probe": ["javascript", "typescript"],
61-
"editor.semanticHighlighting.enabled": false,
6279
"javascript.validate.enable": false,
6380
"typescript.tsdk": "config/ts-config/node_modules/typescript/lib",
6481
"typescript.enablePromptUseWorkspaceTsdk": true,
@@ -78,7 +95,6 @@
7895
},
7996
"typescript.validate.enable": true,
8097
"typescript.suggest.autoImports": true,
81-
"emmet.triggerExpansionOnTab": true,
8298
"[typescript]": {
8399
"editor.defaultFormatter": "esbenp.prettier-vscode"
84100
},

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
3+
Copyright (c) 2026 Bytedance Ltd. and/or its affiliates
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

cspell.json

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

packages/ci-tools/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
3+
Copyright (c) 2026 Bytedance Ltd. and/or its affiliates
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

packages/ci-tools/__tests__/utils.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
1+
// Copyright (c) 2026 Bytedance Ltd. and/or its affiliates
22
// SPDX-License-Identifier: MIT
33
import {
44
safeJsonParse,

packages/ci-tools/src/global.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
1+
// Copyright (c) 2026 Bytedance Ltd. and/or its affiliates
22
// SPDX-License-Identifier: MIT
33
declare module 'process' {
44
global {

packages/ci-tools/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
1+
// Copyright (c) 2026 Bytedance Ltd. and/or its affiliates
22
// SPDX-License-Identifier: MIT
33
import { Command } from 'commander';
44

packages/ci-tools/src/lark/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
1+
// Copyright (c) 2026 Bytedance Ltd. and/or its affiliates
22
// SPDX-License-Identifier: MIT
33
import { Command, Option } from 'commander';
44

packages/ci-tools/src/lark/schema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
1+
// Copyright (c) 2026 Bytedance Ltd. and/or its affiliates
22
// SPDX-License-Identifier: MIT
33
import { type, type Type } from 'arktype';
44
import { AppType, Domain } from '@larksuiteoapi/node-sdk';

packages/ci-tools/src/lark/send-message.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
1+
// Copyright (c) 2026 Bytedance Ltd. and/or its affiliates
22
// SPDX-License-Identifier: MIT
33
import { Command } from 'commander';
44
import { Client } from '@larksuiteoapi/node-sdk';

0 commit comments

Comments
 (0)