forked from OpenWF/SpaceNinjaServer
		
	
		
			
	
	
		
			29 lines
		
	
	
		
			896 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
		
		
			
		
	
	
			29 lines
		
	
	
		
			896 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								  "extends": [
							 | 
						||
| 
								 | 
							
								    "eslint:recommended",
							 | 
						||
| 
								 | 
							
								    "plugin:@typescript-eslint/recommended",
							 | 
						||
| 
								 | 
							
								    "plugin:@typescript-eslint/recommended-requiring-type-checking"
							 | 
						||
| 
								 | 
							
								  ],
							 | 
						||
| 
								 | 
							
								  "plugins": ["@typescript-eslint", "prettier"],
							 | 
						||
| 
								 | 
							
								  "env": {
							 | 
						||
| 
								 | 
							
								    "browser": true,
							 | 
						||
| 
								 | 
							
								    "es6": true,
							 | 
						||
| 
								 | 
							
								    "node": true
							 | 
						||
| 
								 | 
							
								  },
							 | 
						||
| 
								 | 
							
								  "rules": {
							 | 
						||
| 
								 | 
							
								    "prettier/prettier": "error",
							 | 
						||
| 
								 | 
							
								    "@typescript-eslint/semi": ["error"],
							 | 
						||
| 
								 | 
							
								    "@typescript-eslint/explicit-function-return-type": "off",
							 | 
						||
| 
								 | 
							
								    "@typescript-eslint/explicit-module-boundary-types": "off",
							 | 
						||
| 
								 | 
							
								    "@typescript-eslint/restrict-template-expressions": "off",
							 | 
						||
| 
								 | 
							
								    "@typescript-eslint/restrict-plus-operands": "off",
							 | 
						||
| 
								 | 
							
								    "@typescript-eslint/no-unsafe-member-access": "off",
							 | 
						||
| 
								 | 
							
								    "@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
							 | 
						||
| 
								 | 
							
								    "no-case-declarations": "off"
							 | 
						||
| 
								 | 
							
								  },
							 | 
						||
| 
								 | 
							
								  "parser": "@typescript-eslint/parser",
							 | 
						||
| 
								 | 
							
								  "parserOptions": {
							 | 
						||
| 
								 | 
							
								    "project": "./tsconfig.json"
							 | 
						||
| 
								 | 
							
								  }
							 | 
						||
| 
								 | 
							
								}
							 |