File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
org.eclipse.wildwebdeveloper/src/org/eclipse/wildwebdeveloper/eslint Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change 9
9
*******************************************************************************/
10
10
package org .eclipse .wildwebdeveloper .eslint ;
11
11
12
- import java .io .File ;
13
12
import java .io .IOException ;
14
13
import java .net .URL ;
15
14
import java .util .ArrayList ;
@@ -30,11 +29,8 @@ public ESLintLanguageServer() {
30
29
//commands.add("--inspect-brk"); // for local debug
31
30
try {
32
31
URL url = FileLocator .toFileURL (getClass ().getResource ("/node_modules/eslint-server/out/eslintServer.js" ));
33
- File nodeModules = new File (url .getPath ()).getParentFile ().getParentFile ().getParentFile ();
34
32
commands .add (new java .io .File (url .getPath ()).getAbsolutePath ());
35
33
// commands.add("/home/mistria/git/vscode-eslint/server/out/eslintServer.js"); // to use and debug against local sources
36
- commands .add ("--tsProbeLocations" );
37
- commands .add (new File (nodeModules , "typescript" ).getAbsolutePath ());
38
34
commands .add ("--stdio" );
39
35
setCommands (commands );
40
36
setWorkingDirectory (System .getProperty ("user.dir" ));
You can’t perform that action at this time.
0 commit comments