mirror of
https://github.com/r2r90/canvas-label.git
synced 2025-12-17 21:19:39 +00:00
34 lines
1017 B
JavaScript
34 lines
1017 B
JavaScript
/** @type {import("eslint").Linter.Config} */
|
|
const config = {
|
|
parser: "@typescript-eslint/parser",
|
|
parserOptions: {
|
|
project: true,
|
|
},
|
|
plugins: ["@typescript-eslint"],
|
|
extends: [
|
|
"next/core-web-vitals",
|
|
],
|
|
rules: {
|
|
// These opinionated rules are enabled in stylistic-type-checked above.
|
|
// Feel free to reconfigure them to your own preference.
|
|
"@typescript-eslint/array-type": "off",
|
|
"@typescript-eslint/consistent-type-definitions": "off",
|
|
"@typescript-eslint/no-unsafe-assignment": "off",
|
|
"@typescript-eslint/no-unsafe-argument": "off",
|
|
"@typescript-eslint/no-unsafe-call": "off",
|
|
"@typescript-eslint/no-unsafe-member-access": "off",
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
|
|
"@typescript-eslint/consistent-type-imports": [
|
|
"warn",
|
|
{
|
|
prefer: "type-imports",
|
|
fixStyle: "inline-type-imports",
|
|
},
|
|
],
|
|
"@typescript-eslint/no-unused-vars": ["warn", { argsIgnorePattern: "^_" }],
|
|
},
|
|
};
|
|
|
|
module.exports = config;
|