25 lines
		
	
	
		
			531 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			531 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
| {
 | |
|   "env": {
 | |
|     "browser": true,
 | |
|     "commonjs": true,
 | |
|     "es6": true,
 | |
|     "jquery": true
 | |
|   },
 | |
|   "plugins": ["prettier"],
 | |
|   "extends": ["airbnb-base", "plugin:prettier/recommended"],
 | |
|   "rules": {
 | |
|     "prettier/prettier": "error",
 | |
|     "no-underscore-dangle": "off",
 | |
|     "semi": ["error", "never"],
 | |
|     "arrow-parens": ["error", "as-needed"],
 | |
|     "no-param-reassign": "off",
 | |
|     "no-plusplus": [
 | |
|       "error",
 | |
|       {
 | |
|         "allowForLoopAfterthoughts": true
 | |
|       }
 | |
|     ],
 | |
|     "no-cond-assign": ["error", "except-parens"]
 | |
|   }
 | |
| }
 |