Skip to content

Commit acf90a9

Browse files
Merge pull request #125 from ImageMarkup/add-tree-anatomic-site
Add tree filter - General Anatomic Site
2 parents c458723 + d1cd153 commit acf90a9

42 files changed

Lines changed: 13357 additions & 13437 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.eslintrc.js

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,6 @@
1-
const xbsEslint = require("eslint-config-xbsoftware");
2-
const {INDENT, QUOTES, PLUGINS} = require("eslint-config-xbsoftware/constants");
3-
41
module.exports = {
52
"extends": [
6-
xbsEslint({
7-
config: {
8-
indent: INDENT.TABS,
9-
quotes: QUOTES.DOUBLE
10-
}
11-
})
3+
"eslint-config-xbsoftware/javascript"
124
],
135
"env": {
146
"browser": true,
@@ -27,12 +19,16 @@ module.exports = {
2719
"ecmaVersion": "latest"
2820
},
2921
"rules": {
30-
"no-extra-parens": "warn",
22+
"import/no-extraneous-dependencies": "off",
23+
"@stylistic/js/no-extra-parens": "warn",
3124
"valid-jsdoc": "warn",
3225
"no-useless-escape": "off",
3326
"no-use-before-define": "off",
34-
"comma-dangle": "off",
35-
"func-names": "off"
27+
"@stylistic/js/comma-dangle": "off",
28+
"func-names": "off",
29+
"@stylistic/js/indent": ["error", "tab", {SwitchCase: 1}],
30+
"@stylistic/js/quotes": ["error", "double", {avoidEscape: true}],
31+
"@stylistic/js/linebreak-style": "off",
3632
},
3733
"settings": {
3834
"import/resolver": {
@@ -43,7 +39,8 @@ module.exports = {
4339
["app-templates", "./sources/views/templates"],
4440
["app-services", "./sources/services"],
4541
["app-components", "./sources/views/components"],
46-
["app-models", "./sources/models"]
42+
["app-models", "./sources/models"],
43+
["app-utils", "./sources/utils"]
4744
]
4845
}
4946
}

jsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"app-services/*": ["services/*"],
99
"app-components/*": ["views/components/*"],
1010
"app-models/*": ["models/*"],
11+
"app-utils/*": ["utils/*"],
1112
}
1213
},
1314
"include": ["sources/**/*"]

0 commit comments

Comments
 (0)