https://github.com/PressForward/pressforward
Raw File
Tip revision: 766f8fbfe2b6af52b8ddc2faefe90c9e65c41f9e authored by Amanda Regan on 29 November 2017, 15:08:11 UTC
changing link to documentation #966
Tip revision: 766f8fb
.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