This repository was archived by the owner on May 18, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +50
-10
lines changed Expand file tree Collapse file tree 3 files changed +50
-10
lines changed Original file line number Diff line number Diff line change
1
+ name : Lint and Format
2
+ on : [ push, pull_request ]
3
+ jobs :
4
+ ruff :
5
+ name : Python code linting
6
+ runs-on : ubuntu-latest
7
+ steps :
8
+ - uses : actions/checkout@v4
9
+ - uses : chartboost/ruff-action@v1
10
+ with :
11
+ path : ' ./cardie'
12
+
13
+ biome :
14
+ name : CSS and JS linting
15
+ runs-on : ubuntu-latest
16
+ steps :
17
+ - uses : actions/checkout@v4
18
+ - name : Setup Biome CLI
19
+ uses : biomejs/setup-biome@v2
20
+
21
+ - name : Run Biome
22
+ run : biome ci cardie/static
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ {
2
+ "formatter" : {
3
+ "enabled" : true ,
4
+ "formatWithErrors" : false ,
5
+ "ignore" : [],
6
+ "attributePosition" : " auto" ,
7
+ "indentStyle" : " space" ,
8
+ "indentWidth" : 4 ,
9
+ "lineWidth" : 80 ,
10
+ "lineEnding" : " lf"
11
+ },
12
+ "javascript" : {
13
+ "formatter" : {
14
+ "arrowParentheses" : " always" ,
15
+ "bracketSameLine" : false ,
16
+ "bracketSpacing" : true ,
17
+ "jsxQuoteStyle" : " double" ,
18
+ "quoteProperties" : " asNeeded" ,
19
+ "semicolons" : " always" ,
20
+ "trailingCommas" : " all"
21
+ }
22
+ },
23
+ "json" : {
24
+ "formatter" : {
25
+ "trailingCommas" : " none"
26
+ }
27
+ }
28
+ }
You can’t perform that action at this time.
0 commit comments