mirror of
https://github.com/zadam/trilium.git
synced 2025-03-13 00:05:15 +08:00
update eslint config & fix lint
This commit is contained in:
parent
2a34c8fa66
commit
65d2389b2e
5 changed files with 4 additions and 12 deletions
|
@ -3,7 +3,5 @@ dist
|
|||
bin
|
||||
docs
|
||||
libraries
|
||||
spec
|
||||
spec-es6
|
||||
coverage
|
||||
play
|
||||
|
|
|
@ -5,8 +5,7 @@ module.exports = {
|
|||
es2021: true,
|
||||
node: true,
|
||||
},
|
||||
plugins: ['prettier'],
|
||||
|
||||
// plugins: ['prettier'], // to be activated
|
||||
extends: ['eslint:recommended', 'airbnb-base', 'plugin:jsonc/recommended-with-jsonc', 'prettier'],
|
||||
overrides: [
|
||||
{
|
||||
|
@ -18,7 +17,6 @@ module.exports = {
|
|||
parser: 'jsonc-eslint-parser',
|
||||
rules: {
|
||||
'jsonc/sort-keys': [
|
||||
// here is rule (to be deleted)
|
||||
'off',
|
||||
{
|
||||
pathPattern: '^$',
|
||||
|
@ -121,8 +119,6 @@ module.exports = {
|
|||
sourceType: 'module',
|
||||
},
|
||||
rules: {
|
||||
// hi adam, those rules are //temporary off, you can turn them on one by one to check if we really need it. (to be deleted)
|
||||
|
||||
// eslint:recommended
|
||||
'no-unused-vars': 'off',
|
||||
'linebreak-style': 'off',
|
||||
|
@ -136,7 +132,6 @@ module.exports = {
|
|||
'no-inner-declarations': 'off',
|
||||
|
||||
// prettier
|
||||
// all about formating, it might take a while to excute it. you can change the config in .prettierrc.js (to be deleted)
|
||||
'prettier/prettier': ['off', { endOfLine: 'auto' }],
|
||||
|
||||
// airbnb-base
|
||||
|
@ -213,6 +208,6 @@ module.exports = {
|
|||
'import/no-named-as-default-member': 'off',
|
||||
yoda: 'off',
|
||||
'no-script-url': 'off',
|
||||
|
||||
'no-prototype-builtins':'off'
|
||||
},
|
||||
};
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
. "$(dirname "$0")/_/husky.sh"
|
||||
|
||||
npx lint-staged
|
||||
#npx lint-staged
|
||||
|
|
|
@ -8,7 +8,6 @@ if (config.https) {
|
|||
// built-in TLS (terminated by trilium) is not supported yet, PRs are welcome
|
||||
// for reverse proxy terminated TLS this will works since config.https will be false
|
||||
process.exit(0);
|
||||
return;
|
||||
}
|
||||
|
||||
const port = require('./src/services/port');
|
||||
|
|
|
@ -242,7 +242,7 @@ export default class NoteRevisionsDialog extends BasicWidget {
|
|||
if (this.$content.find('span.math-tex').length > 0) {
|
||||
await libraryLoader.requireLibrary(libraryLoader.KATEX);
|
||||
|
||||
renderMathInElement($content[0], {trust: true});
|
||||
renderMathInElement(this.$content[0], {trust: true});
|
||||
}
|
||||
} else if (revisionItem.type === 'code' || revisionItem.type === 'mermaid') {
|
||||
this.$content.html($("<pre>").text(fullNoteRevision.content));
|
||||
|
|
Loading…
Reference in a new issue