mirror of
https://gitee.com/antv/g6.git
synced 2024-11-30 02:38:20 +08:00
4be279b522
* feat(utils): add parsePadding util * feat(utils): add prefix utils * feat: config dev env * refactor(test): update test case context * refactor(test): update layeredCanvas test case * refactor(test): add background grid to help verifying * feat(elements): add label shape * refactor(tests): adjust integration test types definition * test(label): add integraion of label * test(animation): add animation test case
61 lines
1.6 KiB
JavaScript
61 lines
1.6 KiB
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
browser: true,
|
|
es2021: true,
|
|
node: true,
|
|
commonjs: true,
|
|
jest: true,
|
|
},
|
|
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:jsdoc/recommended-error'],
|
|
overrides: [
|
|
{
|
|
env: {
|
|
node: true,
|
|
},
|
|
files: ['.eslintrc.{js,cjs}'],
|
|
parserOptions: {
|
|
sourceType: 'script',
|
|
},
|
|
},
|
|
{
|
|
files: ['**/__tests__/**'],
|
|
rules: {
|
|
'jsdoc/require-jsdoc': 0,
|
|
},
|
|
},
|
|
],
|
|
parser: '@typescript-eslint/parser',
|
|
parserOptions: {
|
|
ecmaVersion: 'latest',
|
|
sourceType: 'module',
|
|
},
|
|
plugins: ['@typescript-eslint', 'jsdoc'],
|
|
rules: {
|
|
// indent: ['error', 2, { SwitchCase: 1 }],
|
|
'linebreak-style': ['error', 'unix'],
|
|
quotes: ['error', 'single', { allowTemplateLiterals: true, avoidEscape: true }],
|
|
semi: ['error', 'always'],
|
|
'@typescript-eslint/no-unused-vars': ['warn', { ignoreRestSiblings: true }],
|
|
'jsdoc/require-param-type': 0,
|
|
'@typescript-eslint/no-this-alias': 'off',
|
|
|
|
// TODO: rules below will be set to 2 in the future
|
|
'jsdoc/require-jsdoc': 1,
|
|
'jsdoc/check-access': 1,
|
|
'jsdoc/check-tag-names': 1,
|
|
'jsdoc/require-description': 1,
|
|
'jsdoc/require-param': 1,
|
|
'jsdoc/check-param-names': 1,
|
|
'jsdoc/require-param-description': 1,
|
|
'jsdoc/require-returns': 1,
|
|
'jsdoc/require-returns-type': 0,
|
|
'jsdoc/require-returns-description': 1,
|
|
|
|
// TODO: rules below are not recommended, and will be removed in the future
|
|
'@typescript-eslint/no-explicit-any': 1,
|
|
'@typescript-eslint/ban-types': 1,
|
|
'@typescript-eslint/ban-ts-comment': 1,
|
|
},
|
|
};
|