seyfert/rome.json
2023-06-12 15:24:47 +00:00

38 lines
533 B
JSON

{
"linter": {
"enabled": true,
"rules": {
"all": true,
"style": {
"useWhile": "off",
"noNonNullAssertion": "off"
},
"suspicious": {
"noExplicitAny": "off"
},
"nursery": {
"useCamelCase": "off"
}
}
},
"formatter": {
"enabled": true,
"indentSize": 2,
"indentStyle": "space",
"lineWidth": 140,
"formatWithErrors": true
},
"files": {
"ignore": [
"node_modules/",
"build",
"dist",
"tsup.config.ts",
"__test__"
]
},
"organizeImports": {
"enabled": true
}
}