forked from frizLabz-FFriZz/Pine-Script-v5-VS-Code
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
42 lines (42 loc) · 975 Bytes
/
.eslintrc
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
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"import"
],
"rules": {
"@typescript-eslint/lines-between-class-members": "off",
"react/jsx-filename-extension": "off",
"import/no-cycle": "off",
"@typescript-eslint/naming-convention": "off",
"semi": "off",
"@typescript-eslint/semi": 0,
"curly": "warn",
"eqeqeq": "warn",
"no-throw-literal": "warn"
},
"ignorePatterns": [
"out",
"dist",
"**.config.js",
"test",
"node_modules",
"webpack.config.cjs",
// "**/*.d.ts",
"Pine Scripts"
],
"env": {
"browser": true,
"es2021": true,
"node": true
},
"extends": [
"airbnb-typescript"
],
"parserOptions": {
"project": "./tsconfig.json",
"ecmaVersion": 12,
"sourceType": "module"
}
}