1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee
inke/.eslintrc.json

15 lines
301 B
JSON
Raw Normal View History

2023-10-22 10:52:46 +08:00
{
"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"
}
}