mirror of https://github.com/docusealco/docuseal
				
				
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							88 lines
						
					
					
						
							1.2 KiB
						
					
					
				
			
		
		
	
	
							88 lines
						
					
					
						
							1.2 KiB
						
					
					
				| require:
 | |
|   - rubocop-performance
 | |
|   - rubocop-rails
 | |
|   - rubocop-rspec
 | |
| 
 | |
| AllCops:
 | |
|   NewCops: enable
 | |
|   Exclude:
 | |
|     - db/schema.rb
 | |
|     - node_modules/**/*
 | |
|     - bin/*
 | |
|     - vendor/**/*
 | |
|   TargetRubyVersion: '3.3'
 | |
|   SuggestExtensions: false
 | |
| 
 | |
| Metrics/BlockLength:
 | |
|   Exclude:
 | |
|     - Rakefile
 | |
|     - '**/*.rake'
 | |
|     - spec/**/*
 | |
|     - config/environments/**/*
 | |
|     - config/routes.rb
 | |
| 
 | |
| Style/Documentation:
 | |
|   Enabled: false
 | |
| 
 | |
| Lint/MissingSuper:
 | |
|   Enabled: false
 | |
| 
 | |
| Metrics/ParameterLists:
 | |
|   Max: 10
 | |
| 
 | |
| Metrics/MethodLength:
 | |
|   Max: 30
 | |
|   Exclude:
 | |
|     - 'db/migrate/**'
 | |
|     - 'spec/**/*'
 | |
| 
 | |
| Metrics/CyclomaticComplexity:
 | |
|   Max: 15
 | |
| 
 | |
| Metrics/PerceivedComplexity:
 | |
|   Max: 15
 | |
| 
 | |
| Layout/LineLength:
 | |
|   AllowedPatterns: ['\A\s*#']
 | |
| 
 | |
| Metrics/AbcSize:
 | |
|   Max: 45
 | |
|   Exclude:
 | |
|     - spec/**/*
 | |
| 
 | |
| Metrics/ModuleLength:
 | |
|   Max: 1000
 | |
| 
 | |
| Metrics/ClassLength:
 | |
|   Max: 1000
 | |
| 
 | |
| RSpec/NestedGroups:
 | |
|   Max: 6
 | |
| 
 | |
| RSpec/MultipleExpectations:
 | |
|   Max: 25
 | |
| 
 | |
| RSpec/ExampleLength:
 | |
|   Max: 50
 | |
| 
 | |
| RSpec/MultipleMemoizedHelpers:
 | |
|   Max: 9
 | |
| 
 | |
| Metrics/BlockNesting:
 | |
|   Max: 4
 | |
| 
 | |
| Rails/I18nLocaleTexts:
 | |
|   Enabled: false
 | |
| 
 | |
| Rails/FindEach:
 | |
|   Enabled: false
 | |
| 
 | |
| Rails/SkipsModelValidations:
 | |
|   Enabled: false
 | |
| 
 | |
| Rails/ApplicationController:
 | |
|   Enabled: false
 | |
| 
 | |
| Rails/Output:
 | |
|   Enabled: false
 |