| 12345678910111213141516171819202122 |
- /**
- * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
- * SPDX-License-Identifier: MIT
- */
- export default [
- {
- ignores: [
- '**/*.d.ts',
- '**/node_modules',
- '**/dist',
- '**/build',
- ],
- },
- {
- files: ['**/*.js', '**/*.ts'],
- languageOptions: {
- ecmaVersion: 'latest',
- sourceType: 'module',
- },
- },
- ];
|