21 lines
		
	
	
		
			512 B
		
	
	
	
		
			JSON
		
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			512 B
		
	
	
	
		
			JSON
		
	
	
| {
 | |
|   "plugins": ["jest", "@typescript-eslint", "prettier", "unicorn"],
 | |
|   "extends": ["plugin:unicorn/recommended", "plugin:github/recommended", "prettier"],
 | |
|   "parser": "@typescript-eslint/parser",
 | |
|   "parserOptions": {
 | |
|     "ecmaVersion": 9,
 | |
|     "sourceType": "module",
 | |
|     "project": "./tsconfig.json"
 | |
|   },
 | |
|   "env": {
 | |
|     "node": true,
 | |
|     "es6": true,
 | |
|     "jest/globals": true
 | |
|   },
 | |
|   "rules": {
 | |
|     "prettier/prettier": "error",
 | |
|     "import/no-extraneous-dependencies": 0,
 | |
|     "import/no-namespace": "off"
 | |
|   }
 | |
| }
 |