fix some linting errors

This commit is contained in:
Philipp Kühn 2020-09-23 23:38:11 +02:00
parent 59adb2c616
commit 5dff1c00d8
32 changed files with 82 additions and 78 deletions

View File

@ -1,2 +1,4 @@
dist/**
tests/**
**/*.css
**/*.json

View File

@ -30,10 +30,10 @@ module.exports = {
autolinkHeadings: {
content: {
type: 'text',
value: '#'
}
}
}
value: '#',
},
},
},
},
},
{

View File

@ -20,9 +20,9 @@ const packages = globby.sync('../packages/*', { onlyDirectories: true })
excludePrivate: true,
// excludeNotDocumented: true,
exclude: [
"**/*.test.ts",
"**/__tests__/*",
"**/__mocks__/*"
'**/*.test.ts',
'**/__tests__/*',
'**/__mocks__/*',
],
})
@ -68,16 +68,16 @@ module.exports = function (api) {
config.module
.rule('typescript')
.test(/\.tsx?$/)
.use()
.loader('ts-loader')
.options({ transpileOnly: false, appendTsSuffixTo: [/\.vue$/] })
.test(/\.tsx?$/)
.use()
.loader('ts-loader')
.options({ transpileOnly: false, appendTsSuffixTo: [/\.vue$/] })
config.module
.rule('jsx')
.test(/\.jsx?$/)
.use()
.loader('babel-loader')
.test(/\.jsx?$/)
.use()
.loader('babel-loader')
globby.sync('../packages/*', { onlyDirectories: true })
.map(name => name.replace('../packages/', ''))

View File

@ -8,44 +8,44 @@ context('/examples/export-html-or-json', () => {
const json = editor.json()
expect(json).to.deep.equal({
'type': 'document',
'content': [
type: 'document',
content: [
{
'type': 'paragraph',
'content': [
type: 'paragraph',
content: [
{
'type': 'text',
'text': 'You are able to export your data as '
type: 'text',
text: 'You are able to export your data as ',
},
{
'type': 'text',
'marks': [
type: 'text',
marks: [
{
'type': 'code'
}
type: 'code',
},
],
'text': 'HTML'
text: 'HTML',
},
{
'type': 'text',
'text': ' or '
type: 'text',
text: ' or ',
},
{
'type': 'text',
'marks': [
type: 'text',
marks: [
{
'type': 'code'
}
type: 'code',
},
],
'text': 'JSON'
text: 'JSON',
},
{
'type': 'text',
'text': '.'
}
]
}
]
type: 'text',
text: '.',
},
],
},
],
})
})
})

View File

@ -4,7 +4,7 @@ context('/examples/history', () => {
})
it('should not have a mistake', () => {
cy.get('.ProseMirror').then(([{ editor }]) => {
cy.get('.ProseMirror').then(() => {
cy.get('.ProseMirror h2:first').should('not.contain', 'Mistake')
})
})

View File

@ -37,7 +37,7 @@ context('/api/extensions/history', () => {
.should('not.contain', 'Mistake')
cy.get('.demo__preview button:nth-child(2)')
.click()
.click()
cy.get('.ProseMirror')
.should('contain', 'Mistake')

View File

@ -1,3 +1,4 @@
// eslint-disable-next-line
import Prism from 'prismjs'
import 'prismjs/components/prism-jsx.js'
import 'prismjs/components/prism-scss.js'
@ -6,7 +7,7 @@ import Demo from '~/components/Demo'
import Tab from '~/components/Tab'
import ReactRenderer from '~/components/ReactRenderer'
export default function (Vue, { router, head, isClient }) {
export default function (Vue) {
Vue.component('Layout', App)
Vue.component('Demo', Demo)
Vue.component('Tab', Tab)

View File

@ -4,18 +4,19 @@ import Document from '@tiptap/extension-document'
import Paragraph from '@tiptap/extension-paragraph'
import Text from '@tiptap/extension-text'
// eslint-disable-next-line
const html = generateHtml({
'type': 'document',
'content': [{
'type': 'paragraph',
'attrs': {
'align': 'left'
type: 'document',
content: [{
type: 'paragraph',
attrs: {
align: 'left',
},
'content': [{
'type': 'text',
'text': 'Example Text'
}]
}]
content: [{
type: 'text',
text: 'Example Text',
}],
}],
}, [
new Document(),
new Paragraph(),