Afterwind

Results 7 comments of Afterwind

I just tested the following code and it works fine for me. ```js // cli.js:L45 /** * @type {Record} */ const projects = {}; const defaultProject = new Project(); defaultProject.addSourceFilesAtPaths(filePaths);...

@glennreyes It has been quite a while and if I recall correctly... https://github.com/thorn0/organize-imports-cli/blob/master/cli.js#L74 Yes. https://github.com/thorn0/organize-imports-cli/blob/master/cli.js#L103-L105 Not sure. Seems yes. Haven't tried manipulating this before.

For anyone encountered the same problem, I found a temporary solution. Add `omnisharp.json` in your project folder with: ```json { "MsBuild": { "MsBuildSDKsPath": "/usr/local/share/dotnet/sdk/2.2.103/Sdks", "UseLegacySdkResolver": true } } ``` Where...

For all forks stucks here: In `node_modules/opencc/node/global.gypi`, find: ``` ["OS=='mac'", { 'xcode_settings': { 'GCC_ENABLE_CPP_EXCEPTIONS': 'YES', 'MACOSX_DEPLOYMENT_TARGET': '10.7', 'OTHER_CPLUSPLUSFLAGS': ["-std=c++14", "-stdlib=libc++"], 'OTHER_LDFLAGS': ["-stdlib=libc++"] } }], ``` Modify the `-std=c++14` to `-std=c++17`,...

Just add some more cases. To intentionally break properties into a new line, I tried line comment and got: ```csharp public int Something // { protected internal get; protected internal...

This might help maybe? https://webpack.js.org/configuration/other-options/#cachebuilddependencies > It's recommended to set cache.buildDependencies.config: [__filename] in your webpack configuration to get the latest configuration and all dependencies. BTW, I built a minimal example...

I see the pain here... JUST FOR FUN, try this perhaps? `package.json` ```json5 "scripts": { "test": "echo \"Error: no test specified\" && exit 1", // Write your env param to...