types/rome.json

44 lines
810 B
JSON
Raw Normal View History

2022-12-01 13:38:02 -08:00
{
"formatter": {
"enabled": true,
"indentStyle": "space",
"lineWidth": 100,
"indentSize": 2,
"ignore": [
"node_modules",
"build"
]
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"trailingComma": "all"
}
},
"linter": {
"enabled": true,
"rules": {
2023-09-11 07:30:38 -07:00
"all": true,
"correctness": {
"all": true,
"noUnusedVariables": "warn"
},
2022-12-01 13:38:02 -08:00
"style": {
2023-09-11 07:30:38 -07:00
"all": true,
"noImplicitBoolean": "off",
"useEnumInitializers": "off",
"noNonNullAssertion": "off"
},
"suspicious": {
"all": true,
"noExplicitAny": "off"
},
"nursery": {
"all": true,
"useExhaustiveDependencies": "off",
"noForEach": "off"
2022-12-01 13:38:02 -08:00
}
}
}
}