Skip to content

Commit

Permalink
prettier all the java
Browse files Browse the repository at this point in the history
  • Loading branch information
belav committed Aug 18, 2024
1 parent 88383e7 commit c529570
Show file tree
Hide file tree
Showing 24 changed files with 1,579 additions and 1,136 deletions.
2 changes: 2 additions & 0 deletions Src/CSharpier.Rider/.prettierrc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
plugins:
- prettier-plugin-java
126 changes: 126 additions & 0 deletions Src/CSharpier.Rider/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions Src/CSharpier.Rider/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"devDependencies": {
"prettier-plugin-java": "^2.6.4"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
import com.intellij.openapi.diagnostic.Logger;

public class CSharpierLogger {
private final static Logger logger = Logger.getInstance(CSharpierLogger.class);

public static Logger getInstance() {
return logger;
}
}
private static final Logger logger = Logger.getInstance(
CSharpierLogger.class
);

public static Logger getInstance() {
return logger;
}
}
Loading

0 comments on commit c529570

Please sign in to comment.