https://github.com/PressForward/pressforward
Raw File
Tip revision: 4d678824c4520396c9a86a916d9a45ffb43040a0 authored by Boone B Gorges on 14 May 2020, 19:37:34 UTC
Use anonymous callbacks instead of `create_function()`.
Tip revision: 4d67882
.eslintrc.json
{
    "env": {
        "browser": true
    },
    "extends": [
		"eslint:recommended",
		"prettier"
	],
    "rules": {
        "indent": [
            "error",
            "tab",
			{
				"FunctionExpression": {"body": 1, "parameters": 2},
		 		"CallExpression": {"arguments": "first"},
				"ArrayExpression": "first",
				"ObjectExpression": "first"
			}
        ],
        "linebreak-style": [
            "error",
            "unix"
        ],
        "quotes": [
            "error",
            "single"
        ],
        "semi": [
            "error",
            "always"
        ]
    },
	"globals": {
		"require": true
	},
    "plugins": [
      "prettier"
    ]
}
back to top