| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 | 
							- {
 
- 	"root": true,
 
- 	"env": {
 
- 		"browser": true,
 
- 		"amd": true,
 
- 		"node": true,
 
- 		"es6": true
 
- 	},
 
- 	"parserOptions": {
 
- 		"ecmaVersion": 2018,
 
- 		"sourceType": "module",
 
- 		"parser": "@babel/eslint-parser",
 
- 		"requireConfigFile": false
 
- 	},
 
- 	"extends": [
 
- 		"airbnb-base",
 
- 		"plugin:vue/strongly-recommended",
 
- 		"eslint:recommended",
 
- 		"prettier"
 
- 	],
 
- 	"plugins": [
 
- 		"prettier"
 
- 	],
 
- 	"globals": {
 
- 		"lofig": "writable",
 
- 		"grecaptcha": "readonly",
 
- 		"history": "readonly"
 
- 	},
 
- 	"rules": {
 
- 		"no-console": 0,
 
- 		"no-control-regex": 0,
 
- 		"no-var": 2,
 
- 		"no-underscore-dangle": 0,
 
- 		"radix": 0,
 
- 		"no-multi-assign": 0,
 
- 		"no-shadow": 0,
 
- 		"no-new": 0,
 
- 		"import/no-unresolved": 0,
 
- 		"import/extensions": 0,
 
- 		"prettier/prettier": [
 
- 			"error"
 
- 		],
 
- 		"vue/order-in-components": 2,
 
- 		"vue/no-v-for-template-key": 0
 
- 	}
 
- }
 
 
  |