Update 'working with intellij' readme and commit additional metadata.

BUG=
R=scheglov@google.com

Review-Url: https://codereview.chromium.org/2692573003 .
This commit is contained in:
Devon Carew 2017-02-10 14:02:30 -08:00
parent 2e435ec020
commit 0dfd726bf6
3 changed files with 35 additions and 4 deletions

View file

@ -0,0 +1,10 @@
<component name="InspectionProjectProfileManager">
<profile version="1.0">
<option name="myName" value="Project Default" />
<inspection_tool class="DartOutdatedDependencies" enabled="false" level="WARNING" enabled_by_default="false" />
<inspection_tool class="LoggerInitializedWithForeignClass" enabled="false" level="WARNING" enabled_by_default="false">
<option name="loggerClassName" value="org.apache.log4j.Logger,org.slf4j.LoggerFactory,org.apache.commons.logging.LogFactory,java.util.logging.Logger" />
<option name="loggerFactoryMethodName" value="getLogger,getLogger,getLog,getLogger" />
</inspection_tool>
</profile>
</component>

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$/../.." vcs="Git" />
</component>
</project>

View file

@ -1,5 +1,20 @@
To open the sdk repo using IntelliJ, you can:
# Working on the SDK repo using IntelliJ
- choose `File` > `Open...`, and select the <sdk>/client/idea directory
- or, from the CLI, type: `idea <sdk>client/idea` (for this to work you need to
set up an IntelliJ command-line launcher)
To work on Dart code in the SDK repo, we recommend either IntelliJ Community
Edition or IntelliJ Ultimate.
## Opening from IntelliJ
To open the sdk repo using IntelliJ, choose `File` > `Open...` and select the
`<sdk>/client/idea` directory.
## Opening from the command-line
To open from the command-line, type:
```
idea <sdk>/client/idea
```
This depends on having previously set up the IntelliJ command-line launcher. To
do this, from the `Tools` menu, select `Create Command-line Launcher...`.