Commit 4e3b8d1b authored by ioedeveloper's avatar ioedeveloper

Fix linting error

parent a545296b
...@@ -108,7 +108,7 @@ class FileManager extends Plugin { ...@@ -108,7 +108,7 @@ class FileManager extends Plugin {
/** The current opened file */ /** The current opened file */
file () { file () {
const file = this.currentFile() const file = this.currentFile()
if (!file) this._handleError({ code: 'ENOENT', message: 'No file selected' }) if (!file) this._handleError({ code: 'ENOENT', message: 'No file selected' })
return file return file
} }
...@@ -118,9 +118,9 @@ class FileManager extends Plugin { ...@@ -118,9 +118,9 @@ class FileManager extends Plugin {
* @param {string} path path of the directory or file * @param {string} path path of the directory or file
* @returns {boolean} true if the path exists * @returns {boolean} true if the path exists
*/ */
exists(path) { exists (path) {
const provider = this.fileProviderOf(path) const provider = this.fileProviderOf(path)
return provider ? true : false return provider ? true : false // eslint-disable-line
} }
/** /**
...@@ -142,10 +142,10 @@ class FileManager extends Plugin { ...@@ -142,10 +142,10 @@ class FileManager extends Plugin {
open (path) { open (path) {
this._handleExists(path, `Cannot open file ${path}`) this._handleExists(path, `Cannot open file ${path}`)
this._handleIsFile(path, `Cannot open file ${path}`) this._handleIsFile(path, `Cannot open file ${path}`)
this.switchFile(path) return this.switchFile(path)
} }
/** /**
* Set the content of a specific file * Set the content of a specific file
* @param {string} path path of the file * @param {string} path path of the file
* @param {string} data content to write on the file * @param {string} data content to write on the file
...@@ -167,7 +167,7 @@ class FileManager extends Plugin { ...@@ -167,7 +167,7 @@ class FileManager extends Plugin {
return this.getFile(path) return this.getFile(path)
} }
/** /**
* Upsert a file with the content of the source file * Upsert a file with the content of the source file
* @param {string} src path of the source file * @param {string} src path of the source file
* @param {string} dest path of the destrination file * @param {string} dest path of the destrination file
...@@ -187,12 +187,12 @@ class FileManager extends Plugin { ...@@ -187,12 +187,12 @@ class FileManager extends Plugin {
* @note will not work on a directory, use `rmdir` instead * @note will not work on a directory, use `rmdir` instead
* @returns {void} * @returns {void}
*/ */
unlink(path) { unlink (path) {
this._handleExists(path, `Cannot remove file ${path}`) this._handleExists(path, `Cannot remove file ${path}`)
this._handleIsDir(path, `Cannot remove file ${path}`) this._handleIsDir(path, `Cannot remove file ${path}`)
} }
/** /**
* Change the path of a file/directory * Change the path of a file/directory
* @param {string} oldPath current path of the file/directory * @param {string} oldPath current path of the file/directory
* @param {string} newPath new path of the file/directory * @param {string} newPath new path of the file/directory
...@@ -217,7 +217,7 @@ class FileManager extends Plugin { ...@@ -217,7 +217,7 @@ class FileManager extends Plugin {
// To implement // To implement
} }
/** /**
* Get the list of files in the directory * Get the list of files in the directory
* @param {string} path path of the directory * @param {string} path path of the directory
* @returns {string[]} list of the file/directory name in this directory * @returns {string[]} list of the file/directory name in this directory
...@@ -242,7 +242,7 @@ class FileManager extends Plugin { ...@@ -242,7 +242,7 @@ class FileManager extends Plugin {
* @note will not work on a file, use `unlink` instead * @note will not work on a file, use `unlink` instead
* @returns {void} * @returns {void}
*/ */
rmdir(path) { rmdir (path) {
this._handleExists(path, `Cannot remove directory ${path}`) this._handleExists(path, `Cannot remove directory ${path}`)
this._handleIsDir(path, `Cannot remove directory ${path}`) this._handleIsDir(path, `Cannot remove directory ${path}`)
// To implement // To implement
...@@ -337,7 +337,7 @@ class FileManager extends Plugin { ...@@ -337,7 +337,7 @@ class FileManager extends Plugin {
getFile (path) { getFile (path) {
const provider = this.fileProviderOf(path) const provider = this.fileProviderOf(path)
if (!provider) this._handleError({ code: 'ENOENT', message: `${path} not available` }) if (!provider) this._handleError({ code: 'ENOENT', message: `${path} not available` })
// TODO: change provider to Promise // TODO: change provider to Promise
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment