https://github.com/PressForward/pressforward
Raw File
Tip revision: bcf68bf2df30e03a5e0269e0bd72fab344788e29 authored by Aram Zucker-Scharff on 26 February 2018, 16:11:23 UTC
Moving function from #987 into the nominate advancemnet step, triggering it on all nominations. Also switching it to support a comma seperated field for multiple emails.
Tip revision: bcf68bf
.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