forked from basho/riak_core
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* riak_core_vnode_worker_pool to gen_statem (#19) * Added E22 to pipeline * Fixed Readme and descriptions to fit riak_core_lite * Included outside dependencies again * Fixed deprecation warnings in those dependencies * Added xref to pipeline * Added badge that tracks hex.pm version * Added coverage support * Removed unused test dependencies (goldrush, mustache). Added missing meck dependency to tests * Made edoc work again. Replaced macros with direct calls. Added edoc to pipeline * Replaced mochiglobal with persistent_term (#43) * Added lint command and lint to pipeline (#35) * #35 (#45) * fix riak_core_status:ringready/0 (#52) Added test case. * Formatter (#53) * Added default rebar3_format * Changed to otp_formatter, fixed one issue in code by refactoring * Adjusted pipeline * Unused modules (#58) * Bloom filter removed * Removed stats util modules * Removed one eqc files. * property based testing (#61) * update travis * adjust number of test executions * update coverage + bug fixing in riak_core_claim * 20 replaced riak_core_gen_server with gen_server (#63) * Erlang 23 Pipeline (#64) * Format with E23, increased line length by 20 * Added E23 to pipeline * PR basho#959 upstream (#65) * Added unit test case which enforces the deadlock prior the fix * V0.10.1 release * #70 * Moved proper to project_plugins (#72) * Finish removing bucket properties and buckets (#75) Co-authored-by: Wölki <[email protected]> Co-authored-by: Andreas Schultz <[email protected]> Co-authored-by: woelki <[email protected]> Co-authored-by: Peter Zeller <[email protected]>
- Loading branch information
1 parent
004205d
commit 3f836ae
Showing
86 changed files
with
11,742 additions
and
11,766 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,3 +26,4 @@ rebar3.crashdump | |
core_vnode_eqc.log | ||
.idea | ||
*.iml | ||
**/*.coverdata |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,20 @@ | ||
language: erlang | ||
otp_release: | ||
- 21.2 | ||
- 21.3 | ||
- 22.3 | ||
- 23.0 | ||
install: | ||
- make | ||
- ./rebar3 update | ||
script: | ||
- make format | ||
- make test | ||
- make proper | ||
- make coverage | ||
- ./rebar3 as test coveralls send | ||
- make lint | ||
- make xref | ||
- make dialyzer | ||
- make docs | ||
sudo: required | ||
dist: trusty |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
%linting and style rules | ||
[{elvis, | ||
[{config, | ||
[#{dirs => ["apps/*/src", "src"], | ||
filter => "*.erl", | ||
rules => [{elvis_style, line_length, | ||
#{ignore => [], | ||
limit => 120, | ||
skip_comments => false}}, | ||
%{elvis_style, no_tabs}, | ||
{elvis_style, no_trailing_whitespace}, | ||
{elvis_style, macro_names, #{ignore => []}}, | ||
{elvis_style, macro_module_names}, | ||
{elvis_style, operator_spaces, #{rules => [{right, ","}, | ||
{right, "++"}, | ||
{left, "++"}, | ||
{right, "--"}, | ||
{left, "--"}]}}, | ||
%{elvis_style, god_modules, | ||
%#{limit => 40, | ||
% ignore => []}}, | ||
{elvis_style, used_ignored_variable}, | ||
{elvis_style, no_behavior_info}, | ||
{ | ||
elvis_style, | ||
module_naming_convention, | ||
#{regex => "^[a-z]([a-z0-9]*_?)*(_SUITE)?$", | ||
ignore => []} | ||
}, | ||
{ | ||
elvis_style, | ||
function_naming_convention, | ||
#{regex => "^[a-z]([a-z0-9]*_?)*$"} %base: ^([a-z][a-z0-9]*_?)*$ | ||
}, | ||
{elvis_style, state_record_and_type}, | ||
{elvis_style, no_spec_with_records} | ||
] | ||
}, | ||
#{dirs => ["."], | ||
filter => "Makefile", | ||
rules => [{elvis_project, no_deps_master_erlang_mk, #{ignore => []}}, | ||
{elvis_project, protocol_for_deps_erlang_mk, #{ignore => []}}] | ||
}, | ||
#{dirs => ["."], | ||
filter => "rebar.config", | ||
rules => [{elvis_project, no_deps_master_rebar, #{ignore => []}}, | ||
{elvis_project, protocol_for_deps_rebar, #{ignore => []}}] | ||
} | ||
] | ||
}] | ||
}]. |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.