Rome settings
05 January, 2023 - 1 min
my current rome.json
settings
{
"formatter": {
"indentStyle": "space",
"ignore": [
"./node_modules/**/*.*",
"./.yarn/**/*.*",
"./dist/**/*.*"
]
},
"linter": {
"rules": {
"recommended": true,
"suspicious": {
"noExplicitAny": "off"
},
"a11y": {
"useKeyWithClickEvents": "off"
}
}
},
"javascript": {
"formatter": {
"quoteProperties": "preserve"
}
}
}