-
Notifications
You must be signed in to change notification settings - Fork 16
/
.ideainspect
50 lines (41 loc) · 2.23 KB
/
.ideainspect
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Levels to look for. Default: WARNING,ERROR
levels: WARNING,ERROR
# Apply an "Custom scope" for the analysis run
# This is _the prefered way_ to limit your inspection run to a part of your project files
# as it takes effect within IDEA itself.
# See: https://www.jetbrains.com/help/idea/2016.2/specify-inspection-scope-dialog.html
#
# HOWTO:
# 1) Create a new scope excluding undesired folders/files (node_modules, doc, ...)
# 2) Share the .idea/scopes/scopename.xml with the project
# 3) Use the _name_ of the scope (not the file).
# 4) Stick to a single word for best compability
scope: livingdoc
# Inspection result files to skip. For example "TodoComment" or "TodoComment.xml".
#
# NOTE: This does not have an effect on which inspections are effectively run by IDEA!
# For the sake of performance better disable these inspections within your
# inspection profile. This here is a last-resort mechanism if you want them
# to appear in your IDE but not your CI process
skip: unused,KDocMissingDocumentation,UnusedSymbol,BooleanMethodIsAlwaysInverted,WeakerAccess,RemoveRedundantBackticks
# Ignore issues affecting source files matching given regex. Example ".*/generated/.*".
#
# NOTE: This does not have an effect on the places IDEA looks. Therefore please prefer
# declaring an "scope" and exclude those locations via the IDEA scoping mechanism
# for the sake of performance.
# This here is a last-resort mechanism if you have no other options to supress
# specific places/warning.
#skipfile: .*/generated/.*,src/main/Foo.java
# Target directory to place the IDEA inspection XML result files. Default: target/inspection-results
#resultdir: target/inspection-results
# IDEA installation home directory. Default: IDEA_HOME environment variable or "idea".
# ideahome: /home/ben/devel/idea
# Limit IDEA inspection to this directory (This overrides scoping)
# dir: .
# Use this inspection profile file located ".idea/inspectionProfiles".
profile: testIT_Kotlin.xml
# IDEA project root directory containing the ".idea" directory
# rootdir: .
# Full path to the local idea.properties file. More info at:
# http://tools.android.com/tech-docs/configuration
# iprops: /Users/Shared/User/Library/Preferences/AndroidStudio2.1/idea.properties