mirror of
https://github.com/zen-browser/www.git
synced 2025-07-07 08:55:32 +02:00
19 lines
651 B
TypeScript
19 lines
651 B
TypeScript
import type { Linter } from "eslint";
|
|
import { configFiles } from "./shared";
|
|
|
|
export const configFilesConfig: Linter.Config = {
|
|
name: "eslint/config-files",
|
|
files: configFiles,
|
|
rules: {
|
|
"no-console": "off",
|
|
"@typescript-eslint/no-var-requires": "off",
|
|
"import/no-default-export": "off",
|
|
"@typescript-eslint/no-unsafe-assignment": "off",
|
|
"@typescript-eslint/no-unsafe-member-access": "off",
|
|
"@typescript-eslint/no-unsafe-call": "off",
|
|
"@typescript-eslint/no-unsafe-return": "off",
|
|
"@typescript-eslint/no-unsafe-argument": "off",
|
|
"prefer-const": "off",
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
},
|
|
};
|