Skip to content

Commit 62a0d7c

Browse files
committed
intellij: Disable spell-check inspection
These `.idea/` directories contain the project configuration and state of IntelliJ IDEA and its family of IDEs -- in particular Android Studio, which is what I and Chris use. There's one for opening the repo at its root (for working on any of the Dart code) and another for opening the android/ subfolder (which better elicits the IDE's support for working on Android-specific code). Lots of the files here are local state (right down to the size and location the IDE window last occupied on the screen) that don't make sense to share. But mixed in among those is some project configuration that is best shared; in particular, this file configuring which "inspections" to run, i.e. what to highlight in the editor as problems to be fixed. Start the file off by disabling the spell-check inspection, because it unavoidably has tons of false positives unless one maintains a list of all the words it doesn't know. I've had this configuration locally since early on; adding to version control now partly for its own sake, but also as preparation to add further configuration to this file.
1 parent 93741d7 commit 62a0d7c

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ migrate_working_dir/
1414
*.iml
1515
*.ipr
1616
*.iws
17-
.idea/
17+
/.idea/*
18+
/android/.idea/*
19+
!/.idea/inspectionProfiles/
20+
!/android/.idea/inspectionProfiles/
1821

1922
# The .vscode folder contains launch configuration and tasks you configure in
2023
# VS Code which you may wish to be included in version control, so this line

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/.idea/inspectionProfiles/Project_Default.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)