From 8006bc52e8ff223e3b21c66d497debb7238655b3 Mon Sep 17 00:00:00 2001 From: Daveanand Mannie Date: Mon, 12 Jan 2026 11:38:48 -0500 Subject: [PATCH] [remove] rubocop not sure i need this yet lets see --- config_files/.rubocop.yml | 59 --------------------------------------- 1 file changed, 59 deletions(-) delete mode 100644 config_files/.rubocop.yml diff --git a/config_files/.rubocop.yml b/config_files/.rubocop.yml deleted file mode 100644 index 7968aa2..0000000 --- a/config_files/.rubocop.yml +++ /dev/null @@ -1,59 +0,0 @@ -AllCops: - TargetRubyVersion: 3.4 - NewCops: enable - Exclude: - - 'db/schema.rb' - - 'bin/**/*' - - 'node_modules/**/*' - - 'vendor/**/*' - -Layout/LineLength: - Max: 100 - -Layout/IndentationWidth: - Width: 2 - -Layout/EmptyLinesAroundClassBody: - Enabled: true - -Layout/EmptyLinesAroundModuleBody: - Enabled: true - -Naming/VariableName: - EnforcedStyle: snake_case - -Naming/MethodName: - EnforcedStyle: snake_case - -Naming/ClassAndModuleCamelCase: - Enabled: true - -Style/Documentation: - Enabled: false - -Style/RedundantBegin: - Enabled: true - -Style/GuardClause: - Enabled: true - -Style/StringLiterals: - EnforcedStyle: double_quotes - -Style/TrailingCommaInArguments: - EnforcedStyleForMultiline: comma - -Style/OptionalBooleanParameter: - Enabled: false - -Metrics/MethodLength: - Max: 25 - -Metrics/ClassLength: - Max: 200 - -Metrics/BlockLength: - Max: 25 - -Metrics/AbcSize: - Max: 15