Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"comment": "feat: 新增vchart-aurora-theme主题包\n\n新增aurora主题包,包含完整的主题配置和示例代码\n\n",
"type": "none",
"packageName": "@visactor/vchart-aurora-theme"
}
],
"packageName": "@visactor/vchart-aurora-theme",
"email": "yangxian.x@bytedance.com"
}
158 changes: 118 additions & 40 deletions common/config/rush/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions packages/vchart-aurora-theme/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
dist
build
esm
cjs
node_modules
coverage

# ignore big data files
__tests__/data/*
26 changes: 26 additions & 0 deletions packages/vchart-aurora-theme/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
require('@rushstack/eslint-patch/modern-module-resolution');

module.exports = {
extends: ['@internal/eslint-config/profile/lib'],
overrides: [
{
files: ['**/__tests__/**', '**/*.test.ts'],
// 测试文件允许以下规则
rules: {
'@typescript-eslint/no-empty-function': 'off',
'no-console': 'off',
'dot-notation': 'off',
'promise/catch-or-return': 'off'
}
}
],
parserOptions: {
tsconfigRootDir: __dirname,
project: './tsconfig.eslint.json',
sourceType: 'module',
ecmaFeatures: {
jsx: true // 让eslint支持jsx语法
}
},
ignorePatterns: ['scripts/**', 'bundler.config.js']
};
Loading
Loading