{
	"parser": "babel-eslint",
	"parserOptions": {
		"sourceType": "module",
		"ecmaFeatures": {
			"jsx": true
		}
	},
	"env": {
		"browser": true,
		"es6": true,
		"jest": true,
		"node": true
	},<% if (tech.react) { %>
	"plugins": ["react"],<% } %>
	"extends": ["eslint:recommended", "prettier"<% if (tech.react) { %>, "plugin:react/recommended"<% } %>],
	"rules": {
		"no-console": ["off"]<% if (tech.react) { %>,
		"react/jsx-uses-react": ["error"],
		"react/jsx-uses-vars": ["error"],
		"react/prop-types": ["off"],
		"react/react-in-jsx-scope": ["error"]<% } %>
	}
}
