├── .github └── workflows │ └── release.yml ├── .gitignore ├── .node-version ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── eslint.config.mjs ├── fixtures ├── input │ ├── manifest.json │ ├── pages.json │ ├── theme.json │ └── uni.vue └── output │ ├── json │ ├── manifest.json │ ├── pages.json │ ├── theme.json │ └── uni.vue │ └── uni │ ├── manifest.json │ ├── pages.json │ ├── theme.json │ └── uni.vue ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── renovate.json ├── src ├── configs │ ├── globals.ts │ ├── index.ts │ ├── sortManifestJson.ts │ ├── sortPagesJson.ts │ ├── sortThemeJson.ts │ └── uni.ts ├── index.ts └── types.ts ├── test └── fixtures.test.ts ├── tsconfig.json └── tsdown.config.ts /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uni-helper/eslint-config/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uni-helper/eslint-config/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 24 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uni-helper/eslint-config/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uni-helper/eslint-config/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uni-helper/eslint-config/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uni-helper/eslint-config/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /fixtures/input/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uni-helper/eslint-config/HEAD/fixtures/input/manifest.json -------------------------------------------------------------------------------- /fixtures/input/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uni-helper/eslint-config/HEAD/fixtures/input/pages.json -------------------------------------------------------------------------------- /fixtures/input/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uni-helper/eslint-config/HEAD/fixtures/input/theme.json -------------------------------------------------------------------------------- /fixtures/input/uni.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uni-helper/eslint-config/HEAD/fixtures/input/uni.vue -------------------------------------------------------------------------------- /fixtures/output/json/manifest.json: -------------------------------------------------------------------------------- 1 | // unchanged 2 | -------------------------------------------------------------------------------- /fixtures/output/json/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uni-helper/eslint-config/HEAD/fixtures/output/json/pages.json -------------------------------------------------------------------------------- /fixtures/output/json/theme.json: -------------------------------------------------------------------------------- 1 | // unchanged 2 | -------------------------------------------------------------------------------- /fixtures/output/json/uni.vue: -------------------------------------------------------------------------------- 1 | // unchanged 2 | -------------------------------------------------------------------------------- /fixtures/output/uni/manifest.json: -------------------------------------------------------------------------------- 1 | // unchanged 2 | -------------------------------------------------------------------------------- /fixtures/output/uni/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uni-helper/eslint-config/HEAD/fixtures/output/uni/pages.json -------------------------------------------------------------------------------- /fixtures/output/uni/theme.json: -------------------------------------------------------------------------------- 1 | // unchanged 2 | -------------------------------------------------------------------------------- /fixtures/output/uni/uni.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uni-helper/eslint-config/HEAD/fixtures/output/uni/uni.vue -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uni-helper/eslint-config/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uni-helper/eslint-config/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uni-helper/eslint-config/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uni-helper/eslint-config/HEAD/renovate.json -------------------------------------------------------------------------------- /src/configs/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uni-helper/eslint-config/HEAD/src/configs/globals.ts -------------------------------------------------------------------------------- /src/configs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uni-helper/eslint-config/HEAD/src/configs/index.ts -------------------------------------------------------------------------------- /src/configs/sortManifestJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uni-helper/eslint-config/HEAD/src/configs/sortManifestJson.ts -------------------------------------------------------------------------------- /src/configs/sortPagesJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uni-helper/eslint-config/HEAD/src/configs/sortPagesJson.ts -------------------------------------------------------------------------------- /src/configs/sortThemeJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uni-helper/eslint-config/HEAD/src/configs/sortThemeJson.ts -------------------------------------------------------------------------------- /src/configs/uni.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uni-helper/eslint-config/HEAD/src/configs/uni.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uni-helper/eslint-config/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uni-helper/eslint-config/HEAD/src/types.ts -------------------------------------------------------------------------------- /test/fixtures.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uni-helper/eslint-config/HEAD/test/fixtures.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uni-helper/eslint-config/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsdown.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uni-helper/eslint-config/HEAD/tsdown.config.ts --------------------------------------------------------------------------------