forked from retejs/rete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
26 lines (26 loc) · 790 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
{
"extends": ["./node_modules/rete-cli/.eslintrc", "plugin:@typescript-eslint/recommended"],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"parserOptions": {
"sourceType": "module"
},
"rules": {
"no-undef": "error",
"sort-imports": ["warn", {
"memberSyntaxSortOrder": ["single", "all", "multiple", "none"]
}],
"no-new": "off",
"max-len": ["warn", 120],
"@typescript-eslint/explicit-member-accessibility": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-parameter-properties": "off"
},
"env": {
"es6": true,
"mocha": true,
"browser": true
}
}