1
0
Fork 0
inke/.eslintrc.json

15 lines
301 B
JSON

{
"root": true,
// This tells ESLint to load the config from the package `eslint-config-custom`
"extends": ["next/core-web-vitals", "eslint:recommended"],
"settings": {
"next": {
"rootDir": ["apps/*/"]
}
},
"rules": {
"no-unused-vars": "off",
"no-undef": "off"
}
}