You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-16 00:14:34 +02:00
Tools: Apply eslint rule "no-multi-spaces"
This commit is contained in:
@ -125,6 +125,7 @@ module.exports = {
|
|||||||
'space-before-blocks': 'error',
|
'space-before-blocks': 'error',
|
||||||
'spaced-comment': ['error', 'always'],
|
'spaced-comment': ['error', 'always'],
|
||||||
'keyword-spacing': ['error', { 'before': true, 'after': true }],
|
'keyword-spacing': ['error', { 'before': true, 'after': true }],
|
||||||
|
'no-multi-spaces': ['error'],
|
||||||
},
|
},
|
||||||
'plugins': [
|
'plugins': [
|
||||||
'react',
|
'react',
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
/* eslint-disable no-multi-spaces */
|
||||||
|
|
||||||
// This is the keycode map for Electron.
|
// This is the keycode map for Electron.
|
||||||
|
|
||||||
const keycodeToElectronMap = [
|
const keycodeToElectronMap = [
|
||||||
|
Reference in New Issue
Block a user