Skip to content

Commit 02d4a5f

Browse files
Jacksunweicopybara-github
authored andcommitted
chore: Renames settings.json to be settings.recommendation.json and enhance .gitignore content
- It's not a good practice to enforce settings.json, since each developer may have different settings of their specific IDE env. - It's no-harm to have a recommended template to start with. - `extensions.json` is good, since it gives suggestion on the useful vs code extensions. PiperOrigin-RevId: 814806918
1 parent 3e760e0 commit 02d4a5f

2 files changed

Lines changed: 33 additions & 1 deletion

File tree

.gitignore

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,32 @@
1+
# Compiled class files
2+
*.class
3+
4+
# Log files
5+
*.log
6+
7+
# Package Files
8+
*.jar
9+
*.war
10+
*.nar
11+
*.ear
12+
*.zip
13+
*.tar.gz
14+
*.rar
15+
16+
# Maven target directory
117
target/
2-
.idea
18+
.mvn/
19+
20+
# IntelliJ IDEA files
21+
.idea/
22+
*.iml
23+
*.ipr
24+
*.iws
25+
out/
26+
27+
# VS Code files
28+
.vscode/settings.json
29+
30+
# OS-specific junk
31+
.DS_Store
32+
Thumbs.db
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
{
2+
// A recommended set of settings for VS Code.
3+
//
24
// formatOnType and formatOnPaste is a very bad idea for slow formatters
35
// (such as an external Google Java Format invocation exec), so just on Save:
46
"editor.formatOnSave": true,

0 commit comments

Comments
 (0)