summaryrefslogtreecommitdiffstats
path: root/.eslintrc.js
blob: 1c8370471a371d3f086e828559e435675ac29232 (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
25
26
27
28
29
30
module.exports = {
	parser:	'@typescript-eslint/parser',
	plugins: [
		'react-hooks',
	],
	extends: [
		'plugin:react/recommended',
		'plugin:@typescript-eslint/recommended',
		'prettier/@typescript-eslint',
		'plugin:prettier/recommended',
	],
	parserOptions: {
		ecmaVersion: 2018,
		sourceType: 'module',
		ecmaFeatures: {
			jsx: true,
		},
	},
	rules: {
		'react/prop-types': [0],
		'react-hooks/rules-of-hooks': 'error',
		'react-hooks/exhaustive-deps': 'warn',
		'prettier/prettier': 'warn',
	},
	settings: {
		react: {
			version: 'detect',
		},
	},
};