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
22 changes: 22 additions & 0 deletions azure/packages/azure-local-service/eslint.config.mts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
/* eslint-disable */
/**
* GENERATED FILE - DO NOT EDIT DIRECTLY.
* To regenerate: pnpm tsx scripts/generate-flat-eslint-configs.ts --typescript
*/
import type { Linter } from "eslint";
import { strict } from "../../../common/build/eslint-config-fluid/flat.mts";

const config: Linter.Config[] = [
...strict,
{
files: ["**/*.ts", "**/*.tsx", "**/*.mts", "**/*.cts"],
languageOptions: {
parserOptions: {
projectService: false,
project: ["./tsconfig.eslint.json"],
},
},
},
];

export default config;
33 changes: 33 additions & 0 deletions azure/packages/azure-service-utils/eslint.config.mts
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/* eslint-disable */
/**
* GENERATED FILE - DO NOT EDIT DIRECTLY.
* To regenerate: pnpm tsx scripts/generate-flat-eslint-configs.ts --typescript
*/
import type { Linter } from "eslint";
import { strict } from "../../../common/build/eslint-config-fluid/flat.mts";

const config: Linter.Config[] = [
...strict,
{
rules: {
"import-x/no-unassigned-import": "off",
"@typescript-eslint/strict-boolean-expressions": "off",
"unicorn/prevent-abbreviations": [
"error",
{
"allowList": {
"i": true,
},
},
],
},
},
{
files: ["src/test/types/*"],
rules: {
"unicorn/prevent-abbreviations": "off",
},
},
];

export default config;
132 changes: 0 additions & 132 deletions common/build/eslint-config-fluid/flat.mjs

This file was deleted.

Loading
Loading