-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc.js
42 lines (41 loc) · 1.08 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
const packageJson = require("./package.json");
module.exports = {
ignorePatterns: ["**/node_modules/**/*", "**/dist/**/*", "**/static/**/*"],
overrides: [
{
files: ["**/*.js"],
extends: ["@lensapp/eslint-config"],
env: {
node: true,
},
parserOptions: {
ecmaVersion: 2018,
sourceType: "module",
},
plugins: ["unused-imports", "simple-import-sort"],
},
{
files: ["**/*.ts"],
parser: "@typescript-eslint/parser",
extends: ["@lensapp/eslint-config"],
plugins: ["unused-imports", "react-hooks", "simple-import-sort"],
parserOptions: {
ecmaVersion: 2018,
sourceType: "module",
project: "tsconfig.json",
},
},
{
files: ["**/*.tsx"],
parser: "@typescript-eslint/parser",
plugins: ["unused-imports", "react-hooks", "import", "simple-import-sort"],
extends: ["@lensapp/eslint-config"],
parserOptions: {
ecmaVersion: 2018,
sourceType: "module",
jsx: true,
project: "tsconfig.json",
},
},
],
};