xojs/xo

XO not linting files starts with dot

fisker opened this issue · 1 comments

XO not linting files starts with dot

Just mentioning my workaround using negative ignores:

{
	"xo": {
		"ignores": [
			"!.*"
		]
	}
}

Or just the javascript files: "!.*.{cjs, js}"

EDIT: Do not do this as it will ignore other files.