forked from kriasoft/react-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
54 lines (48 loc) · 1.07 KB
/
.eslintrc.js
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* SPDX-FileCopyrightText: 2014-present Kriasoft <[email protected]> */
/* SPDX-License-Identifier: MIT */
/**
* ESLint configuration.
*
* @see https://eslint.org/docs/user-guide/configuring
* @type {import("eslint").Linter.Config}
*/
module.exports = {
root: true,
env: { es6: true },
extends: ["eslint:recommended", "prettier"],
parserOptions: { ecmaVersion: 2020 },
overrides: [
{
files: ["*.ts", ".tsx"],
parser: "@typescript-eslint/parser",
extends: ["plugin:@typescript-eslint/recommended"],
plugins: ["@typescript-eslint"],
parserOptions: {
sourceType: "module",
warnOnUnsupportedTypeScriptVersion: true,
},
},
{
files: ["*.test.js"],
env: { jest: true },
},
{
files: [
".eslintrc.js",
"babel.config.js",
"relay.config.js",
"scripts/**/*.js",
"webpack.config.js",
],
env: { node: true },
},
],
ignorePatterns: [
"/.build",
"/.cache",
"/.git",
"/.husky",
"/.yarn",
"/**/__snapshots__",
],
};