feat: publish HoloLake model-native living system source
This commit is contained in:
parent
6ad10edde1
commit
c395dd3a99
2467 changed files with 615073 additions and 0 deletions
32
product-source/hololake-platform/eslint.config.js
Normal file
32
product-source/hololake-platform/eslint.config.js
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
import js from '@eslint/js'
|
||||
import globals from 'globals'
|
||||
import reactHooks from 'eslint-plugin-react-hooks'
|
||||
import reactRefresh from 'eslint-plugin-react-refresh'
|
||||
import tseslint from 'typescript-eslint'
|
||||
import { defineConfig, globalIgnores } from 'eslint/config'
|
||||
|
||||
export default defineConfig([
|
||||
globalIgnores([
|
||||
'dist',
|
||||
'coverage',
|
||||
'site/.vitepress/cache/',
|
||||
'site/.vitepress/dist/',
|
||||
'src-tauri/resources/mcp-server/',
|
||||
'src-tauri/target/',
|
||||
'src-tauri/gen/',
|
||||
'tools/',
|
||||
]),
|
||||
{
|
||||
files: ['**/*.{ts,tsx}'],
|
||||
extends: [
|
||||
js.configs.recommended,
|
||||
tseslint.configs.recommended,
|
||||
reactHooks.configs.flat.recommended,
|
||||
reactRefresh.configs.vite,
|
||||
],
|
||||
languageOptions: {
|
||||
ecmaVersion: 2020,
|
||||
globals: globals.browser,
|
||||
},
|
||||
},
|
||||
])
|
||||
Loading…
Reference in a new issue