summaryrefslogtreecommitdiff
path: root/eslint.config.js
blob: dd249a75e90760a37bffad8b33e65223eef12d80 (plain)
1
2
3
4
5
6
7
8
9
10
module.exports = [
	{
		rules: {
			"no-constant-binary-expression": "error",
			indent: [ "warn", "tab", { SwitchCase: 0 } ],
			semi: [ "error", "never" ],
			"no-unused-vars": [ "error", { vars: "all", args: "all", argsIgnorePattern: "^_" } ],
		},
	},
]