summaryrefslogtreecommitdiffstats
path: root/.eslintrc.json
blob: 45b46f4c36739b624f33d98f0b11a66760d9b827 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
	"extends": "eslint:recommended",
	"rules": {
		"no-undef": "off",
		"no-unused-vars": "off",

		"eqeqeq": ["warn", "smart"],
		"no-console": "warn",
		"no-loop-func": "warn",

		"block-spacing": "error",
		"camelcase": "error",
		"comma-spacing": "error",
		"comma-style": "error",
		"curly": ["error", "multi-line", "consistent"],
		"indent": ["error", "tab"],
		"no-alert": "error",
		"no-trailing-spaces": "error",
		"quotes": ["error", "single", "avoid-escape"],
		"semi": "error",
		"space-before-blocks": "error"

	}
}