https://github.com/PressForward/pressforward
Raw File
Tip revision: d0e0089207a458172ca046bce146954eaeed5ee8 authored by Boone B Gorges on 19 September 2023, 21:00:31 UTC
Improved Bootstrap styling for tabbed interfaces.
Tip revision: d0e0089
.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