33 lines
645 B
JavaScript
33 lines
645 B
JavaScript
![]() |
import js from "@eslint/js"
|
||
|
import eslintConfigPrettier from "eslint-config-prettier"
|
||
|
import onlyWarn from "eslint-plugin-only-warn"
|
||
|
import turboPlugin from "eslint-plugin-turbo"
|
||
|
import tseslint from "typescript-eslint"
|
||
|
|
||
|
/**
|
||
|
* A shared ESLint configuration for the repository.
|
||
|
*
|
||
|
* @type {import("eslint").Linter.Config}
|
||
|
* */
|
||
|
export const config = [
|
||
|
js.configs.recommended,
|
||
|
eslintConfigPrettier,
|
||
|
...tseslint.configs.recommended,
|
||
|
{
|
||
|
plugins: {
|
||
|
turbo: turboPlugin,
|
||
|
},
|
||
|
rules: {
|
||
|
"turbo/no-undeclared-env-vars": "warn",
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
plugins: {
|
||
|
onlyWarn,
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
ignores: ["dist/**"],
|
||
|
},
|
||
|
]
|