| 
							 | 
						{
 | 
					
					
						
						| 
							 | 
						    "extends": "eslint:recommended",
 | 
					
					
						
						| 
							 | 
						    "rules": {
 | 
					
					
						
						| 
							 | 
						        "curly": ["error", "multi-line"],
 | 
					
					
						
						| 
							 | 
						        "eol-last": ["error"],
 | 
					
					
						
						| 
							 | 
						        "indent": [
 | 
					
					
						
						| 
							 | 
						            "error", 2,  
 | 
					
					
						
						| 
							 | 
						            
 | 
					
					
						
						| 
							 | 
						            {
 | 
					
					
						
						| 
							 | 
						                "SwitchCase": 1,
 | 
					
					
						
						| 
							 | 
						                "MemberExpression": 2,
 | 
					
					
						
						| 
							 | 
						                "ObjectExpression": 1,
 | 
					
					
						
						| 
							 | 
						                "FunctionDeclaration": {
 | 
					
					
						
						| 
							 | 
						                    "body": 1,
 | 
					
					
						
						| 
							 | 
						                    "parameters": 2
 | 
					
					
						
						| 
							 | 
						                },
 | 
					
					
						
						| 
							 | 
						                "FunctionExpression": {
 | 
					
					
						
						| 
							 | 
						                    "body": 1,
 | 
					
					
						
						| 
							 | 
						                    "parameters": 2
 | 
					
					
						
						| 
							 | 
						                },
 | 
					
					
						
						| 
							 | 
						                "CallExpression": {
 | 
					
					
						
						| 
							 | 
						                    "arguments": 2
 | 
					
					
						
						| 
							 | 
						                },
 | 
					
					
						
						| 
							 | 
						                
 | 
					
					
						
						| 
							 | 
						                "ignoredNodes": ["ConditionalExpression"]
 | 
					
					
						
						| 
							 | 
						            }
 | 
					
					
						
						| 
							 | 
						        ],
 | 
					
					
						
						| 
							 | 
						        "linebreak-style": ["off"],
 | 
					
					
						
						| 
							 | 
						        "max-len": ["error", 120, 4],
 | 
					
					
						
						| 
							 | 
						        "no-trailing-spaces": ["error", { "skipBlankLines": true }],
 | 
					
					
						
						| 
							 | 
						        "no-unused-vars": [
 | 
					
					
						
						| 
							 | 
						            "error",
 | 
					
					
						
						| 
							 | 
						            {
 | 
					
					
						
						| 
							 | 
						                "args": "after-used",
 | 
					
					
						
						| 
							 | 
						                
 | 
					
					
						
						| 
							 | 
						                "varsIgnorePattern": "^_",
 | 
					
					
						
						| 
							 | 
						                
 | 
					
					
						
						| 
							 | 
						                "argsIgnorePattern": "^_"
 | 
					
					
						
						| 
							 | 
						            }
 | 
					
					
						
						| 
							 | 
						        ],
 | 
					
					
						
						| 
							 | 
						        "no-use-before-define": ["error"],
 | 
					
					
						
						| 
							 | 
						        "quotes": ["off"], 
 | 
					
					
						
						| 
							 | 
						        "semi": ["error", "always"],
 | 
					
					
						
						| 
							 | 
						        "space-before-function-paren": ["error", "never"], 
 | 
					
					
						
						| 
							 | 
						        "space-infix-ops": ["error"],
 | 
					
					
						
						| 
							 | 
						        "strict": ["off"], 
 | 
					
					
						
						| 
							 | 
						        "no-cond-assign": ["off"], 
 | 
					
					
						
						| 
							 | 
						        "no-redeclare": ["off"], 
 | 
					
					
						
						| 
							 | 
						        "valid-jsdoc": ["error", {"requireReturn": false}],
 | 
					
					
						
						| 
							 | 
						        "no-console": ["off"],
 | 
					
					
						
						| 
							 | 
						        "no-constant-condition": ["off"]
 | 
					
					
						
						| 
							 | 
						    },
 | 
					
					
						
						| 
							 | 
						    "enviroment": "web",
 | 
					
					
						
						| 
							 | 
						    "globals": {
 | 
					
					
						
						| 
							 | 
						        "Blockly": true, 
 | 
					
					
						
						| 
							 | 
						        "goog": true, 
 | 
					
					
						
						| 
							 | 
						    }
 | 
					
					
						
						| 
							 | 
						}
 | 
					
					
						
						| 
							 | 
						
 |