https://github.com/PressForward/pressforward
Revision edcdfe2d452148bc618f6a3e56da9e21be43b37b authored by dependabot[bot] on 11 December 2020, 03:29:05 UTC, committed by GitHub on 11 December 2020, 03:29:05 UTC
Bumps [ini](https://github.com/isaacs/ini) from 1.3.4 to 1.3.7.
- [Release notes](https://github.com/isaacs/ini/releases)
- [Commits](https://github.com/isaacs/ini/compare/v1.3.4...v1.3.7)

Signed-off-by: dependabot[bot] <support@github.com>
1 parent b249988
Raw File
Tip revision: edcdfe2d452148bc618f6a3e56da9e21be43b37b authored by dependabot[bot] on 11 December 2020, 03:29:05 UTC
Bump ini from 1.3.4 to 1.3.7 in /assets/stats-app
Tip revision: edcdfe2
.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