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

Commit

Permalink
eclint: improved detection of files and fixed some issues
Browse files Browse the repository at this point in the history
  • Loading branch information
rsubtil committed Dec 8, 2019
1 parent 93e707e commit 6ddf1f5
Show file tree
Hide file tree
Showing 13 changed files with 12 additions and 15 deletions.
3 changes: 0 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,6 @@ indent_style = space
indent_size = 2
tab_width = 2

[*.json]
insert_final_newline = false

[package-lock.json]
indent_style = space
indent_size = 2
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ editorconfig:
- node_modules/
script:
- npm install eclint
- npx eclint check "src/**/*.d" "*.json" "**/meson.build" "*.yml"
- npx eclint check {,src/**/}{meson.build,*.{d,json,yml}}
allow_failure: true

# Artifacts template
Expand Down
2 changes: 1 addition & 1 deletion dub.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@
"src/unit",
"src/entity"
]
}
}
2 changes: 1 addition & 1 deletion src/audio/dub.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
"riverd-sndfile": "~>1.0.1",
"riverd-soundio": "~>1.0.1"
}
}
}
2 changes: 1 addition & 1 deletion src/core/dub.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
"aurorafw:stdx": {"path": "../stdx"},
"aurorafw:unit": {"path": "../unit"}
}
}
}
2 changes: 1 addition & 1 deletion src/entity/dub.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
"dependencies": {
"aurorafw:unit": {"path": "../unit"}
}
}
}
2 changes: 1 addition & 1 deletion src/graphics/dub.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
"aurorafw:gui": {"path": "../gui"},
"aurorafw:unit": {"path": "../unit"}
}
}
}
2 changes: 1 addition & 1 deletion src/image/dub.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
"dependencies": {
"aurorafw:unit": {"path": "../unit"}
}
}
}
2 changes: 1 addition & 1 deletion src/math/dub.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
"dependencies": {
"aurorafw:unit": {"path": "../unit"}
}
}
}
2 changes: 1 addition & 1 deletion src/metadata/dub.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
"aurorafw:core": {"path": "../core"},
"aurorafw:unit": {"path": "../unit"}
}
}
}
2 changes: 1 addition & 1 deletion src/stdx/dub.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
"dependencies": {
"aurorafw:unit": {"path": "../unit"}
}
}
}
2 changes: 1 addition & 1 deletion src/stdx/source/aurorafw/stdx/exception.d
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ version(unittest) import aurorafw.unit.assertion;

static class NotImplementedException : Exception
{
mixin basicExceptionCtors;
mixin basicExceptionCtors;
}

@safe pure
Expand Down
2 changes: 1 addition & 1 deletion src/unit/dub.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
]
}
]
}
}

0 comments on commit 6ddf1f5

Please sign in to comment.