Skip to content

Commit 12de7de

Browse files
committed
feat:i18n readme & basic document
1 parent a01c873 commit 12de7de

Some content is hidden

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

89 files changed

+6555
-6369
lines changed

.eslintignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
common/template/*
1+
common/template/*
22
src/*

.eslintrc.js

+26-26
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
module.exports = {
2-
env: {
3-
browser: true,
4-
commonjs: true,
5-
es2021: true,
6-
},
7-
extends: 'airbnb-base',
8-
overrides: [
9-
{
10-
env: {
11-
node: true,
12-
},
13-
files: [
14-
'.eslintrc.{js,cjs}',
15-
],
16-
parserOptions: {
17-
sourceType: 'script',
18-
},
19-
},
20-
],
21-
parserOptions: {
22-
ecmaVersion: 'latest',
23-
},
24-
rules: {
25-
},
26-
};
1+
module.exports = {
2+
env: {
3+
browser: true,
4+
commonjs: true,
5+
es2021: true,
6+
},
7+
extends: 'airbnb-base',
8+
overrides: [
9+
{
10+
env: {
11+
node: true,
12+
},
13+
files: [
14+
'.eslintrc.{js,cjs}',
15+
],
16+
parserOptions: {
17+
sourceType: 'script',
18+
},
19+
},
20+
],
21+
parserOptions: {
22+
ecmaVersion: 'latest',
23+
},
24+
rules: {
25+
},
26+
};

.gitignore

+34-34
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
1-
# Logs
2-
logs
3-
*.log
4-
npm-debug.log*
5-
yarn-debug.log*
6-
yarn-error.log*
7-
package-lock.json*
8-
yarn-lock.json*
9-
pnpm-debug.log*
10-
lerna-debug.log*
11-
12-
node_modules
13-
dist
14-
dist-ssr
15-
*.local
16-
17-
# Editor directories and files
18-
.vscode
19-
.vscode/*
20-
!.vscode/extensions.json
21-
.idea
22-
.DS_Store
23-
*.suo
24-
*.ntvs*
25-
*.njsproj
26-
*.sln
27-
*.sw?
28-
coverage/**
29-
30-
# store file
31-
resources/stores/*
32-
33-
# cli-dist
34-
pl-cli
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
package-lock.json*
8+
yarn-lock.json*
9+
pnpm-debug.log*
10+
lerna-debug.log*
11+
12+
node_modules
13+
dist
14+
dist-ssr
15+
*.local
16+
17+
# Editor directories and files
18+
.vscode
19+
.vscode/*
20+
!.vscode/extensions.json
21+
.idea
22+
.DS_Store
23+
*.suo
24+
*.ntvs*
25+
*.njsproj
26+
*.sln
27+
*.sw?
28+
coverage/**
29+
30+
# store file
31+
resources/stores/*
32+
33+
# cli-dist
34+
pl-cli
3535
*/colorFont.js

CHANGELOG.md

+11-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1-
# 1.0.0
2-
- cli: lk/lf/lc 脚本实现 检测/查找/创建 功能,强而有力地支持了题目的便捷创建.
3-
- template project: easy mode 实现交互性创建,leet-create和leet-check保持src目录下创建题解.
4-
- plugin: 插件化的设计完善,进行立项.
5-
6-
# 1.0.1
7-
- add `author` info and `repository` in package.json
8-
1+
# CHANGELOG
2+
## 1.0.0 release
3+
### Features
4+
- cli: lk/lf/lc 脚本实现 检测/查找/创建 功能,强而有力地支持了题目的便捷创建.
5+
- template project: easy mode 实现交互性创建,leet-create和leet-check保持src目录下创建题解.
6+
- plugin: 插件化的设计完善,进行立项.
7+
8+
## 1.0.1 release
9+
### Features
10+
- add `author` info and `repository` in package.json
11+

LICENSE

+21-21
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
MIT License
2-
3-
Copyright (c) 2024 EternalHeart
4-
5-
Permission is hereby granted, free of charge, to any person obtaining a copy
6-
of this software and associated documentation files (the "Software"), to deal
7-
in the Software without restriction, including without limitation the rights
8-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9-
copies of the Software, and to permit persons to whom the Software is
10-
furnished to do so, subject to the following conditions:
11-
12-
The above copyright notice and this permission notice shall be included in all
13-
copies or substantial portions of the Software.
14-
15-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
1+
MIT License
2+
3+
Copyright (c) 2024 EternalHeart
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)