https://github.com/PressForward/pressforward
Raw File
Tip revision: ac97cf55599c7d03e4f871f294bd1182ab375914 authored by Aram Zucker-Scharff on 29 June 2018, 16:01:29 UTC
Revert "Remove gender API #952"
Tip revision: ac97cf5
.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