-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Because of tinyMCE breaking things, skipLibCheck had to be enabled for now.
- Loading branch information
Showing
231 changed files
with
3,479 additions
and
8,355 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
}; |
Oops, something went wrong.