forked from sassoftware/vscode-sas-extension
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
41 lines (41 loc) · 931 Bytes
/
.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
module.exports = {
root: true,
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaVersion: 2018,
sourceType: "module",
ecmaFeatures: { jsx: true },
project: [
"./tsconfig.json",
"./client/tsconfig.json",
"./server/tsconfig.json",
],
},
env: {
node: true,
},
plugins: ["@typescript-eslint", "react", "react-hooks"],
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
],
rules: {
eqeqeq: "error",
"prefer-const": "error",
"@typescript-eslint/dot-notation": "error",
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/consistent-type-assertions": [
"error",
{ assertionStyle: "never" },
],
curly: "error",
},
settings: {
react: {
pragma: "createElement",
version: "detect",
},
},
};