Skip to content
This repository was archived by the owner on May 17, 2022. It is now read-only.

Commit 6ddf1f5

Browse files
committed
eclint: improved detection of files and fixed some issues
1 parent 93e707e commit 6ddf1f5

File tree

13 files changed

+12
-15
lines changed

13 files changed

+12
-15
lines changed

.editorconfig

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,6 @@ indent_style = space
4747
indent_size = 2
4848
tab_width = 2
4949

50-
[*.json]
51-
insert_final_newline = false
52-
5350
[package-lock.json]
5451
indent_style = space
5552
indent_size = 2

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ editorconfig:
6565
- node_modules/
6666
script:
6767
- npm install eclint
68-
- npx eclint check "src/**/*.d" "*.json" "**/meson.build" "*.yml"
68+
- npx eclint check {,src/**/}{meson.build,*.{d,json,yml}}
6969
allow_failure: true
7070

7171
# Artifacts template

dub.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@
4141
"src/unit",
4242
"src/entity"
4343
]
44-
}
44+
}

src/audio/dub.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
"riverd-sndfile": "~>1.0.1",
1212
"riverd-soundio": "~>1.0.1"
1313
}
14-
}
14+
}

src/core/dub.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
"aurorafw:stdx": {"path": "../stdx"},
99
"aurorafw:unit": {"path": "../unit"}
1010
}
11-
}
11+
}

src/entity/dub.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
"dependencies": {
88
"aurorafw:unit": {"path": "../unit"}
99
}
10-
}
10+
}

src/graphics/dub.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
"aurorafw:gui": {"path": "../gui"},
1010
"aurorafw:unit": {"path": "../unit"}
1111
}
12-
}
12+
}

src/image/dub.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
"dependencies": {
88
"aurorafw:unit": {"path": "../unit"}
99
}
10-
}
10+
}

src/math/dub.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
"dependencies": {
88
"aurorafw:unit": {"path": "../unit"}
99
}
10-
}
10+
}

src/metadata/dub.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
"aurorafw:core": {"path": "../core"},
99
"aurorafw:unit": {"path": "../unit"}
1010
}
11-
}
11+
}

0 commit comments

Comments
 (0)