Skip to content

Commit

Permalink
Update d3 and other packages
Browse files Browse the repository at this point in the history
  • Loading branch information
HavardNJ committed Oct 17, 2022
1 parent 04ec827 commit a8af002
Show file tree
Hide file tree
Showing 61 changed files with 6,564 additions and 13,916 deletions.
18 changes: 12 additions & 6 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
{
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint/eslint-plugin"],
"env": {
"es6": true,
"node": true
Expand All @@ -11,17 +13,18 @@
}
},
"extends": [
"airbnb-base"
"airbnb-base",
"airbnb-typescript/base"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"sourceType": "module",
"project": "./tsconfig.test.json"
},
"rules": {
"one-var": "off",
"no-mixed-operators": "off",
Expand All @@ -39,8 +42,11 @@
"no-dupe-class-members": "off",
"comma-dangle": "off",
"max-len": "off",
"lines-between-class-members": "off",
"import/prefer-default-export": "off",
"import/extensions": "off"
"import/extensions": "off",
"import/no-cycle": "off",
"lines-between-class-members": "off",
"@typescript-eslint/lines-between-class-members": "off",
"@typescript-eslint/naming-convention": "off"
}
}
Loading

0 comments on commit a8af002

Please sign in to comment.