30 lines
582 B
JSON
30 lines
582 B
JSON
{
|
|
"extends": ["plugin:no-unsanitized/DOM"],
|
|
"plugins": ["no-unsanitized", "react"],
|
|
"parserOptions": {
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
}
|
|
},
|
|
"rules": {
|
|
"no-unsanitized/method": [
|
|
"warn", {
|
|
"escape": {
|
|
"methods": ["DOMPurify.sanitize"]
|
|
}
|
|
}
|
|
],
|
|
"no-unsanitized/property": [
|
|
"warn", {
|
|
"escape": {
|
|
"methods": ["DOMPurify.sanitize"]
|
|
}
|
|
}
|
|
],
|
|
"no-eval": "warn",
|
|
"no-implied-eval": "warn",
|
|
"react/no-danger-with-children": "warn",
|
|
"react/no-danger": "warn"
|
|
}
|
|
}
|