10 lines
241 B
JavaScript
10 lines
241 B
JavaScript
|
module.exports = {
|
||
|
root: true,
|
||
|
extends: ["plugin:@typescript-eslint/recommended", "turbo", "prettier"],
|
||
|
rules: {
|
||
|
"@typescript-eslint/no-explicit-any": "off",
|
||
|
},
|
||
|
parserOptions: {},
|
||
|
plugins: ["@typescript-eslint", "turbo"],
|
||
|
};
|