keycloak-demo/.eslintrc

10 lines
267 B
Plaintext
Raw Normal View History

2021-08-31 10:24:42 +00:00
{
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {
"no-console": [1, { "allow": ["info", "warn", "error", "table"] }],
"no-underscore-dangle": ["error", { "allow": ["_id", "_type", "_index", "_source", "super_", "_score", "_modelName"] }]
}
}