Skip to content

Commit

Permalink
chore!: update dependencies
Browse files Browse the repository at this point in the history
Because of tinyMCE breaking things, skipLibCheck had to be enabled for
now.
  • Loading branch information
kmoschcau committed Oct 8, 2023
1 parent 1074902 commit 082c828
Show file tree
Hide file tree
Showing 231 changed files with 3,479 additions and 8,355 deletions.
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@ indent_style = space
insert_final_newline = true
max_line_length = 120
trim_trailing_whitespace = true

[.git/COMMIT_EDITMSG]
max_line_length = 72
21 changes: 11 additions & 10 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
module.exports = {
env: {
es6: true
es6: true,
},
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:prettier/recommended'],
parser: '@typescript-eslint/parser',
extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:prettier/recommended"],
parser: "@typescript-eslint/parser",
parserOptions: {
project: './test-d/tsconfig.json',
sourceType: 'module'
project: "./test-d/tsconfig.json",
sourceType: "module",
},
plugins: ['@typescript-eslint', 'eslint-plugin-tsdoc'],
plugins: ["@typescript-eslint", "eslint-plugin-tsdoc"],
rules: {
'tsdoc/syntax': 'warn',
'@typescript-eslint/ban-types': 'off',
'@typescript-eslint/no-explicit-any': 'off'
}
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unsafe-declaration-merging": "off", // TODO: reenable in V10
"tsdoc/syntax": "warn",
},
};
4 changes: 0 additions & 4 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
module.exports = {
tabWidth: 2,
trailingComma: "none",
semi: true,
printWidth: 120,
bracketSpacing: true
};
Loading

0 comments on commit 082c828

Please sign in to comment.