Commit 4f95b33d by g-ouattara

project specific configurations.

Format and lint rules aswell as vscode settings.
parent 632ee352
...@@ -3,10 +3,51 @@ ...@@ -3,10 +3,51 @@
"organizeImports": { "organizeImports": {
"enabled": true "enabled": true
}, },
"formatter": {
"enabled": true,
"formatWithErrors": false,
"ignore": [],
"attributePosition": "auto",
"indentStyle": "tab",
"indentWidth": 4,
"lineEnding": "lf",
"lineWidth": 100
},
"linter": { "linter": {
"enabled": true, "enabled": true,
"rules": { "rules": {
"recommended": true "recommended": true,
"complexity": {
"noExcessiveCognitiveComplexity": "error"
},
"style": {
"useConsistentArrayType": "warn",
"useFilenamingConvention": {
"level": "error",
"options": {
"filenameCases": ["PascalCase", "export"]
}
},
"useForOf": "warn",
"useNamingConvention": {
"level": "error",
"options": {
"requireAscii": true
}
},
"useShorthandAssign": "warn"
},
"suspicious": {
"noConsoleLog": "warn",
"useAwait": "warn"
},
"nursery": {
"noDuplicateElseIf": "warn"
} }
} }
},
"vcs": {
"enabled": true,
"clientKind": "git"
}
} }
{
"editor.defaultFormatter": "biomejs.biome",
"editor.codeActionsOnSave": {
"quickfix.biome": "explicit"
},
"editor.formatOnSave": true
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment