We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
eclipse-codetemplate.xml 第 19-23 行
<template autoinsert="true" context="newtype_context" deleted="false" description="Newly created files" enabled="true" id="org.eclipse.jdt.ui.text.codetemplates.newtype" name="newtype">${filecomment} ${package_declaration} ${typecomment} ${type_declaration}</template>
使用“eclipse-codetemplate.xml”后,eclipse 新建 java 类文件样式不对,需要单独 format 一遍
正确应该是:
package com.ngailab; public class Test { }
建议改为如下,去掉行首的空格
The text was updated successfully, but these errors were encountered:
Update eclipse-codetemplate.xml
f52ad1b
fix alibaba#876
5204b80
15a0d02
Successfully merging a pull request may close this issue.
Rule content
eclipse-codetemplate.xml 第 19-23 行
Problem description
使用“eclipse-codetemplate.xml”后,eclipse 新建 java 类文件样式不对,需要单独 format 一遍
正确应该是:
Advice
建议改为如下,去掉行首的空格
The text was updated successfully, but these errors were encountered: