mirror of
https://github.com/dev-sec/linux-baseline
synced 2024-11-12 22:47:07 +00:00
Merge pull request #169 from dev-sec/newlint
Change linting to Cookstyle
This commit is contained in:
commit
07929ea2d1
6 changed files with 15 additions and 37 deletions
28
.rubocop.yml
28
.rubocop.yml
|
@ -2,31 +2,3 @@
|
|||
AllCops:
|
||||
Exclude:
|
||||
- vendor/**/*
|
||||
Documentation:
|
||||
Enabled: false
|
||||
ParameterAlignment:
|
||||
Enabled: true
|
||||
HashSyntax:
|
||||
Enabled: true
|
||||
LineLength:
|
||||
Enabled: false
|
||||
EmptyLinesAroundBlockBody:
|
||||
Enabled: false
|
||||
Style/IfUnlessModifier:
|
||||
Enabled: false
|
||||
MethodLength:
|
||||
Max: 40
|
||||
NumericLiterals:
|
||||
MinDigits: 10
|
||||
Metrics/BlockLength:
|
||||
Max: 35
|
||||
Metrics/CyclomaticComplexity:
|
||||
Max: 10
|
||||
Metrics/PerceivedComplexity:
|
||||
Max: 10
|
||||
Metrics/AbcSize:
|
||||
Max: 30
|
||||
# Lint/AmbiguousBlockAssociation is incompatible with RSpec
|
||||
# https://github.com/rubocop-hq/rubocop/issues/4222
|
||||
Lint/AmbiguousBlockAssociation:
|
||||
Enabled: false
|
||||
|
|
1
Gemfile
1
Gemfile
|
@ -2,6 +2,7 @@
|
|||
|
||||
source 'https://rubygems.org'
|
||||
|
||||
gem 'cookstyle'
|
||||
gem 'highline'
|
||||
gem 'rack'
|
||||
gem 'rake'
|
||||
|
|
5
Rakefile
5
Rakefile
|
@ -1,5 +1,6 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require 'cookstyle'
|
||||
require 'rake/testtask'
|
||||
require 'rubocop/rake_task'
|
||||
|
||||
|
@ -9,6 +10,10 @@ task :rubocop do
|
|||
RuboCop::RakeTask.new
|
||||
end
|
||||
|
||||
RuboCop::RakeTask.new(:cookstyle) do |task|
|
||||
task.options << '--display-cop-names'
|
||||
end
|
||||
|
||||
# lint the project
|
||||
desc 'Run robocop linter'
|
||||
task lint: [:rubocop]
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
#
|
||||
# Copyright 2015, Patrick Muench
|
||||
# Copyright:: 2015, Patrick Muench
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
|
@ -29,8 +29,8 @@ shadow_group = 'root'
|
|||
shadow_group = 'shadow' if os.debian? || os.suse? || os.name == 'alpine'
|
||||
container_execution = begin
|
||||
virtualization.role == 'guest' && virtualization.system =~ /^(lxc|docker)$/
|
||||
rescue NoMethodError
|
||||
false
|
||||
rescue NoMethodError
|
||||
false
|
||||
end
|
||||
|
||||
blacklist = input(
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
#
|
||||
# Copyright 2015, Patrick Muench
|
||||
# Copyright:: 2015, Patrick Muench
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
|
@ -21,8 +21,8 @@
|
|||
|
||||
container_execution = begin
|
||||
virtualization.role == 'guest' && virtualization.system =~ /^(lxc|docker)$/
|
||||
rescue NoMethodError
|
||||
false
|
||||
rescue NoMethodError
|
||||
false
|
||||
end
|
||||
|
||||
control 'package-01' do
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
#
|
||||
# Copyright 2015, Patrick Muench
|
||||
# Copyright:: 2015, Patrick Muench
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
|
@ -23,8 +23,8 @@ sysctl_forwarding = input('sysctl_forwarding', value: false, description: 'Is ne
|
|||
kernel_modules_disabled = input('kernel_modules_disabled', value: 0, description: 'Should loading of kernel modules be disabled?')
|
||||
container_execution = begin
|
||||
virtualization.role == 'guest' && virtualization.system =~ /^(lxc|docker)$/
|
||||
rescue NoMethodError
|
||||
false
|
||||
rescue NoMethodError
|
||||
false
|
||||
end
|
||||
|
||||
control 'sysctl-01' do
|
||||
|
|
Loading…
Reference in a new issue