Files
swiss-datashare/frontend/.eslintrc.json
2022-10-09 22:30:32 +02:00

12 lines
355 B
JSON

{
"extends": ["eslint-config-next", "eslint:recommended", "prettier"],
"plugins": ["react"],
"rules": {
"quotes": ["warn", "double", { "allowTemplateLiterals": true }],
"react-hooks/exhaustive-deps": ["off"],
"import/no-anonymous-default-export": ["off"],
"no-unused-vars": ["warn"],
"react/no-unescaped-entities": ["off"]
}
}