mirror of
https://github.com/codecov/codecov-action.git
synced 2025-12-08 08:06:27 +00:00
* chore(deps): remove eslint-google as not supported by eslint9 * fix: actually remove eslint-config-google
44 lines
1.1 KiB
JavaScript
44 lines
1.1 KiB
JavaScript
import typescriptEslint from "@typescript-eslint/eslint-plugin";
|
|
import globals from "globals";
|
|
import tsParser from "@typescript-eslint/parser";
|
|
import path from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
import js from "@eslint/js";
|
|
import { FlatCompat } from "@eslint/eslintrc";
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = path.dirname(__filename);
|
|
const compat = new FlatCompat({
|
|
baseDirectory: __dirname,
|
|
recommendedConfig: js.configs.recommended,
|
|
allConfig: js.configs.all
|
|
});
|
|
|
|
export default [
|
|
...compat.extends("eslint:recommended", "plugin:@typescript-eslint/recommended"),
|
|
{
|
|
plugins: {
|
|
"@typescript-eslint": typescriptEslint,
|
|
},
|
|
|
|
languageOptions: {
|
|
globals: {
|
|
...globals.browser,
|
|
...globals.commonjs,
|
|
},
|
|
|
|
parser: tsParser,
|
|
ecmaVersion: 12,
|
|
sourceType: "script",
|
|
},
|
|
|
|
rules: {
|
|
"max-len": ["error", {
|
|
code: 120,
|
|
}],
|
|
|
|
"linebreak-style": 0,
|
|
},
|
|
},
|
|
];
|