Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
beasy-mobile
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
4
Issues
4
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
G
beasy-mobile
Commits
4f95b33d
Commit
4f95b33d
authored
Apr 23, 2024
by
g-ouattara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
project specific configurations.
Format and lint rules aswell as vscode settings.
parent
632ee352
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
49 additions
and
1 deletion
+49
-1
biome.json
biome.json
+42
-1
settings.json
settings.json
+7
-0
No files found.
biome.json
View file @
4f95b33d
...
...
@@ -3,10 +3,51 @@
"organizeImports"
:
{
"enabled"
:
true
},
"formatter"
:
{
"enabled"
:
true
,
"formatWithErrors"
:
false
,
"ignore"
:
[],
"attributePosition"
:
"auto"
,
"indentStyle"
:
"tab"
,
"indentWidth"
:
4
,
"lineEnding"
:
"lf"
,
"lineWidth"
:
100
},
"linter"
:
{
"enabled"
:
true
,
"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"
}
}
settings.json
0 → 100644
View file @
4f95b33d
{
"editor.defaultFormatter"
:
"biomejs.biome"
,
"editor.codeActionsOnSave"
:
{
"quickfix.biome"
:
"explicit"
},
"editor.formatOnSave"
:
true
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment