mirror of
				https://github.com/mitchell/mjfs.us.git
				synced 2025-10-31 13:15:25 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			602 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			602 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
| {
 | |
|   "extends": ["tslint:latest", "tslint-config-prettier"],
 | |
|   "defaultSeverity": "warning",
 | |
|   "rules": {
 | |
|     "no-any": true,
 | |
|     "no-unsafe-any": true,
 | |
|     "no-magic-numbers": true,
 | |
|     "no-console": true,
 | |
|     "cyclomatic-complexity": [true, 10],
 | |
|     "typedef": [
 | |
|       true,
 | |
|       "call-signature",
 | |
|       "arrow-call-signature",
 | |
|       "parameter",
 | |
|       "arrow-parameter",
 | |
|       "property-declaration",
 | |
|       "member-variable-declaration"
 | |
|     ],
 | |
|     "semicolon": false,
 | |
|     "interface-over-type-literal": false
 | |
|   },
 | |
|   "linterOptions": {
 | |
|     "exclude": ["config/**/*.js", "node_modules/**/*.ts"]
 | |
|   }
 | |
| }
 |