mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-20 18:02:44 +01:00
Add omnisharp.json to enable analyzers and editorconfig support
This commit is contained in:
parent
1250c3db92
commit
fcea6d23b0
257
.editorconfig
257
.editorconfig
@ -2,6 +2,263 @@
|
|||||||
# editorconfig.org
|
# editorconfig.org
|
||||||
root = true
|
root = true
|
||||||
|
|
||||||
|
# NOTE: Requires **VS2019 16.3** or later
|
||||||
|
|
||||||
|
# Stylecop.ruleset
|
||||||
|
# Description: Rules for Radarr
|
||||||
|
|
||||||
|
# Code files
|
||||||
|
[*.cs]
|
||||||
|
charset = utf-8
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
insert_final_newline = true
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 4
|
||||||
|
|
||||||
|
# Sort using and Import directives with System.* appearing first
|
||||||
|
dotnet_sort_system_directives_first = true
|
||||||
|
|
||||||
|
# Avoid "this." and "Me." if not necessary
|
||||||
|
dotnet_style_qualification_for_field = false:refactoring
|
||||||
|
dotnet_style_qualification_for_property = false:refactoring
|
||||||
|
dotnet_style_qualification_for_method = false:refactoring
|
||||||
|
dotnet_style_qualification_for_event = false:refactoring
|
||||||
|
|
||||||
|
# Indentation preferences
|
||||||
|
csharp_indent_block_contents = true
|
||||||
|
csharp_indent_braces = false
|
||||||
|
csharp_indent_case_contents = true
|
||||||
|
csharp_indent_case_contents_when_block = true
|
||||||
|
csharp_indent_switch_labels = true
|
||||||
|
csharp_indent_labels = flush_left
|
||||||
|
|
||||||
|
dotnet_style_qualification_for_field = false:suggestion
|
||||||
|
dotnet_style_qualification_for_property = false:suggestion
|
||||||
|
dotnet_style_qualification_for_method = false:suggestion
|
||||||
|
dotnet_style_qualification_for_event = false:suggestion
|
||||||
|
dotnet_naming_style.instance_field_style.capitalization = camel_case
|
||||||
|
dotnet_naming_style.instance_field_style.required_prefix = _
|
||||||
|
|
||||||
|
# Prefer "var" everywhere
|
||||||
|
csharp_style_var_for_built_in_types = true:suggestion
|
||||||
|
csharp_style_var_when_type_is_apparent = true:suggestion
|
||||||
|
csharp_style_var_elsewhere = true:suggestion
|
||||||
|
|
||||||
|
# Stylecop Rules
|
||||||
|
dotnet_diagnostic.SA0001.severity = none
|
||||||
|
dotnet_diagnostic.SA1005.severity = none
|
||||||
|
dotnet_diagnostic.SA1025.severity = none
|
||||||
|
dotnet_diagnostic.SA1101.severity = none
|
||||||
|
dotnet_diagnostic.SA1116.severity = none
|
||||||
|
dotnet_diagnostic.SA1118.severity = none
|
||||||
|
dotnet_diagnostic.SA1122.severity = none
|
||||||
|
dotnet_diagnostic.SA1201.severity = suggestion
|
||||||
|
dotnet_diagnostic.SA1202.severity = suggestion
|
||||||
|
dotnet_diagnostic.SA1204.severity = suggestion
|
||||||
|
dotnet_diagnostic.SA1300.severity = none
|
||||||
|
dotnet_diagnostic.SA1303.severity = none
|
||||||
|
dotnet_diagnostic.SA1304.severity = none
|
||||||
|
dotnet_diagnostic.SA1306.severity = none
|
||||||
|
dotnet_diagnostic.SA1309.severity = none
|
||||||
|
dotnet_diagnostic.SA1310.severity = none
|
||||||
|
dotnet_diagnostic.SA1401.severity = none
|
||||||
|
dotnet_diagnostic.SA1402.severity = none
|
||||||
|
dotnet_diagnostic.SA1404.severity = suggestion
|
||||||
|
dotnet_diagnostic.SA1405.severity = suggestion
|
||||||
|
dotnet_diagnostic.SA1406.severity = suggestion
|
||||||
|
dotnet_diagnostic.SA1410.severity = suggestion
|
||||||
|
dotnet_diagnostic.SA1411.severity = suggestion
|
||||||
|
dotnet_diagnostic.SA1413.severity = none
|
||||||
|
dotnet_diagnostic.SA1516.severity = none
|
||||||
|
dotnet_diagnostic.SA1600.severity = none
|
||||||
|
dotnet_diagnostic.SA1601.severity = none
|
||||||
|
dotnet_diagnostic.SA1602.severity = none
|
||||||
|
dotnet_diagnostic.SA1604.severity = none
|
||||||
|
dotnet_diagnostic.SA1605.severity = none
|
||||||
|
dotnet_diagnostic.SA1606.severity = none
|
||||||
|
dotnet_diagnostic.SA1607.severity = none
|
||||||
|
dotnet_diagnostic.SA1608.severity = none
|
||||||
|
dotnet_diagnostic.SA1610.severity = none
|
||||||
|
dotnet_diagnostic.SA1611.severity = none
|
||||||
|
dotnet_diagnostic.SA1612.severity = none
|
||||||
|
dotnet_diagnostic.SA1613.severity = none
|
||||||
|
dotnet_diagnostic.SA1614.severity = none
|
||||||
|
dotnet_diagnostic.SA1615.severity = none
|
||||||
|
dotnet_diagnostic.SA1616.severity = none
|
||||||
|
dotnet_diagnostic.SA1617.severity = none
|
||||||
|
dotnet_diagnostic.SA1618.severity = none
|
||||||
|
dotnet_diagnostic.SA1619.severity = none
|
||||||
|
dotnet_diagnostic.SA1620.severity = none
|
||||||
|
dotnet_diagnostic.SA1621.severity = none
|
||||||
|
dotnet_diagnostic.SA1622.severity = none
|
||||||
|
dotnet_diagnostic.SA1623.severity = none
|
||||||
|
dotnet_diagnostic.SA1624.severity = none
|
||||||
|
dotnet_diagnostic.SA1625.severity = none
|
||||||
|
dotnet_diagnostic.SA1626.severity = none
|
||||||
|
dotnet_diagnostic.SA1627.severity = none
|
||||||
|
dotnet_diagnostic.SA1629.severity = none
|
||||||
|
dotnet_diagnostic.SA1633.severity = none
|
||||||
|
dotnet_diagnostic.SA1634.severity = none
|
||||||
|
dotnet_diagnostic.SA1635.severity = none
|
||||||
|
dotnet_diagnostic.SA1636.severity = none
|
||||||
|
dotnet_diagnostic.SA1637.severity = none
|
||||||
|
dotnet_diagnostic.SA1638.severity = none
|
||||||
|
dotnet_diagnostic.SA1640.severity = none
|
||||||
|
dotnet_diagnostic.SA1641.severity = none
|
||||||
|
dotnet_diagnostic.SA1642.severity = none
|
||||||
|
dotnet_diagnostic.SA1643.severity = none
|
||||||
|
dotnet_diagnostic.SA1648.severity = none
|
||||||
|
dotnet_diagnostic.SA1649.severity = none
|
||||||
|
dotnet_diagnostic.SA1651.severity = none
|
||||||
|
dotnet_diagnostic.SX1101.severity = warning
|
||||||
|
dotnet_diagnostic.SX1309.severity = warning
|
||||||
|
|
||||||
|
# Microsoft Analyzers that fail and need to be sorted thru
|
||||||
|
dotnet_diagnostic.ASP0000.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1000.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1001.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1003.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1008.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1010.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1012.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1014.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1016.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1017.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1018.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1019.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1021.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1024.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1027.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1028.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1030.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1031.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1032.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1033.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1034.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1036.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1040.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1041.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1043.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1044.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1050.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1051.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1052.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1054.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1055.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1056.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1058.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1060.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1061.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1062.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1063.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1064.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1065.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1066.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1067.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1068.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1069.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1200.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1303.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1304.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1305.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1307.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1308.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1401.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1507.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1707.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1710.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1712.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1714.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1715.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1716.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1717.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1720.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1721.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1724.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1801.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1802.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1805.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1806.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1810.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1812.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1814.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1815.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1816.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1819.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1820.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1821.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1822.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1823.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1824.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1825.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1826.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1827.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1828.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1829.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA1834.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2000.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2002.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2007.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2008.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2009.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2010.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2011.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2012.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2013.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2100.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2101.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2119.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2153.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2200.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2207.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2208.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2211.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2213.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2214.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2215.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2216.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2219.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2225.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2226.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2227.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2229.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2231.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2234.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2235.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2237.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2241.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2242.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2243.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2244.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2245.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA2246.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA3061.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA3075.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA3076.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA3077.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA3147.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5350.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5351.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5359.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5360.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5363.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5364.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5365.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5366.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5368.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5369.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5370.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5371.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5372.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5373.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5374.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5379.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5384.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5385.severity = suggestion
|
||||||
|
dotnet_diagnostic.CA5397.severity = suggestion
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[*.{js,html,js,hbs,less,css}]
|
[*.{js,html,js,hbs,less,css}]
|
||||||
charset = utf-8
|
charset = utf-8
|
||||||
trim_trailing_whitespace = true
|
trim_trailing_whitespace = true
|
||||||
|
@ -699,7 +699,7 @@ stages:
|
|||||||
- bash: |
|
- bash: |
|
||||||
chmod a+x ${TESTSFOLDER}/test.sh
|
chmod a+x ${TESTSFOLDER}/test.sh
|
||||||
${TESTSFOLDER}/test.sh ${OSNAME} Automation Test
|
${TESTSFOLDER}/test.sh ${OSNAME} Automation Test
|
||||||
displayName: Run Integration Tests
|
displayName: Run Automation Tests
|
||||||
- task: PublishTestResults@2
|
- task: PublishTestResults@2
|
||||||
inputs:
|
inputs:
|
||||||
testResultsFormat: 'NUnit'
|
testResultsFormat: 'NUnit'
|
||||||
|
@ -1,254 +0,0 @@
|
|||||||
# NOTE: Requires **VS2019 16.3** or later
|
|
||||||
|
|
||||||
# Stylecop.ruleset
|
|
||||||
# Description: Rules for Radarr
|
|
||||||
|
|
||||||
# Code files
|
|
||||||
[*.cs]
|
|
||||||
charset = utf-8
|
|
||||||
trim_trailing_whitespace = true
|
|
||||||
insert_final_newline = true
|
|
||||||
indent_style = space
|
|
||||||
indent_size = 4
|
|
||||||
|
|
||||||
# Sort using and Import directives with System.* appearing first
|
|
||||||
dotnet_sort_system_directives_first = true
|
|
||||||
|
|
||||||
# Avoid "this." and "Me." if not necessary
|
|
||||||
dotnet_style_qualification_for_field = false:refactoring
|
|
||||||
dotnet_style_qualification_for_property = false:refactoring
|
|
||||||
dotnet_style_qualification_for_method = false:refactoring
|
|
||||||
dotnet_style_qualification_for_event = false:refactoring
|
|
||||||
|
|
||||||
# Indentation preferences
|
|
||||||
csharp_indent_block_contents = true
|
|
||||||
csharp_indent_braces = false
|
|
||||||
csharp_indent_case_contents = true
|
|
||||||
csharp_indent_case_contents_when_block = true
|
|
||||||
csharp_indent_switch_labels = true
|
|
||||||
csharp_indent_labels = flush_left
|
|
||||||
|
|
||||||
dotnet_style_qualification_for_field = false:suggestion
|
|
||||||
dotnet_style_qualification_for_property = false:suggestion
|
|
||||||
dotnet_style_qualification_for_method = false:suggestion
|
|
||||||
dotnet_style_qualification_for_event = false:suggestion
|
|
||||||
dotnet_naming_style.instance_field_style.capitalization = camel_case
|
|
||||||
dotnet_naming_style.instance_field_style.required_prefix = _
|
|
||||||
|
|
||||||
# Prefer "var" everywhere
|
|
||||||
csharp_style_var_for_built_in_types = true:suggestion
|
|
||||||
csharp_style_var_when_type_is_apparent = true:suggestion
|
|
||||||
csharp_style_var_elsewhere = true:suggestion
|
|
||||||
|
|
||||||
# Stylecop Rules
|
|
||||||
dotnet_diagnostic.SA0001.severity = none
|
|
||||||
dotnet_diagnostic.SA1005.severity = none
|
|
||||||
dotnet_diagnostic.SA1025.severity = none
|
|
||||||
dotnet_diagnostic.SA1101.severity = none
|
|
||||||
dotnet_diagnostic.SA1116.severity = none
|
|
||||||
dotnet_diagnostic.SA1118.severity = none
|
|
||||||
dotnet_diagnostic.SA1122.severity = none
|
|
||||||
dotnet_diagnostic.SA1201.severity = suggestion
|
|
||||||
dotnet_diagnostic.SA1202.severity = suggestion
|
|
||||||
dotnet_diagnostic.SA1204.severity = suggestion
|
|
||||||
dotnet_diagnostic.SA1300.severity = none
|
|
||||||
dotnet_diagnostic.SA1303.severity = none
|
|
||||||
dotnet_diagnostic.SA1304.severity = none
|
|
||||||
dotnet_diagnostic.SA1306.severity = none
|
|
||||||
dotnet_diagnostic.SA1309.severity = none
|
|
||||||
dotnet_diagnostic.SA1310.severity = none
|
|
||||||
dotnet_diagnostic.SA1401.severity = none
|
|
||||||
dotnet_diagnostic.SA1402.severity = none
|
|
||||||
dotnet_diagnostic.SA1404.severity = suggestion
|
|
||||||
dotnet_diagnostic.SA1405.severity = suggestion
|
|
||||||
dotnet_diagnostic.SA1406.severity = suggestion
|
|
||||||
dotnet_diagnostic.SA1410.severity = suggestion
|
|
||||||
dotnet_diagnostic.SA1411.severity = suggestion
|
|
||||||
dotnet_diagnostic.SA1413.severity = none
|
|
||||||
dotnet_diagnostic.SA1516.severity = none
|
|
||||||
dotnet_diagnostic.SA1600.severity = none
|
|
||||||
dotnet_diagnostic.SA1601.severity = none
|
|
||||||
dotnet_diagnostic.SA1602.severity = none
|
|
||||||
dotnet_diagnostic.SA1604.severity = none
|
|
||||||
dotnet_diagnostic.SA1605.severity = none
|
|
||||||
dotnet_diagnostic.SA1606.severity = none
|
|
||||||
dotnet_diagnostic.SA1607.severity = none
|
|
||||||
dotnet_diagnostic.SA1608.severity = none
|
|
||||||
dotnet_diagnostic.SA1610.severity = none
|
|
||||||
dotnet_diagnostic.SA1611.severity = none
|
|
||||||
dotnet_diagnostic.SA1612.severity = none
|
|
||||||
dotnet_diagnostic.SA1613.severity = none
|
|
||||||
dotnet_diagnostic.SA1614.severity = none
|
|
||||||
dotnet_diagnostic.SA1615.severity = none
|
|
||||||
dotnet_diagnostic.SA1616.severity = none
|
|
||||||
dotnet_diagnostic.SA1617.severity = none
|
|
||||||
dotnet_diagnostic.SA1618.severity = none
|
|
||||||
dotnet_diagnostic.SA1619.severity = none
|
|
||||||
dotnet_diagnostic.SA1620.severity = none
|
|
||||||
dotnet_diagnostic.SA1621.severity = none
|
|
||||||
dotnet_diagnostic.SA1622.severity = none
|
|
||||||
dotnet_diagnostic.SA1623.severity = none
|
|
||||||
dotnet_diagnostic.SA1624.severity = none
|
|
||||||
dotnet_diagnostic.SA1625.severity = none
|
|
||||||
dotnet_diagnostic.SA1626.severity = none
|
|
||||||
dotnet_diagnostic.SA1627.severity = none
|
|
||||||
dotnet_diagnostic.SA1629.severity = none
|
|
||||||
dotnet_diagnostic.SA1633.severity = none
|
|
||||||
dotnet_diagnostic.SA1634.severity = none
|
|
||||||
dotnet_diagnostic.SA1635.severity = none
|
|
||||||
dotnet_diagnostic.SA1636.severity = none
|
|
||||||
dotnet_diagnostic.SA1637.severity = none
|
|
||||||
dotnet_diagnostic.SA1638.severity = none
|
|
||||||
dotnet_diagnostic.SA1640.severity = none
|
|
||||||
dotnet_diagnostic.SA1641.severity = none
|
|
||||||
dotnet_diagnostic.SA1642.severity = none
|
|
||||||
dotnet_diagnostic.SA1643.severity = none
|
|
||||||
dotnet_diagnostic.SA1648.severity = none
|
|
||||||
dotnet_diagnostic.SA1649.severity = none
|
|
||||||
dotnet_diagnostic.SA1651.severity = none
|
|
||||||
dotnet_diagnostic.SX1101.severity = warning
|
|
||||||
dotnet_diagnostic.SX1309.severity = warning
|
|
||||||
|
|
||||||
# Microsoft Analyzers that fail and need to be sorted thru
|
|
||||||
dotnet_diagnostic.ASP0000.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1000.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1001.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1003.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1008.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1010.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1012.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1014.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1016.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1017.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1018.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1019.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1021.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1024.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1027.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1028.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1030.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1031.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1032.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1033.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1034.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1036.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1040.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1041.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1043.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1044.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1050.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1051.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1052.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1054.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1055.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1056.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1058.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1060.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1061.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1062.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1063.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1064.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1065.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1066.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1067.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1068.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1069.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1200.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1303.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1304.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1305.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1307.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1308.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1401.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1507.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1707.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1710.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1712.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1714.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1715.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1716.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1717.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1720.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1721.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1724.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1801.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1802.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1805.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1806.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1810.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1812.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1814.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1815.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1816.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1819.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1820.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1821.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1822.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1823.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1824.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1825.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1826.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1827.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1828.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1829.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA1834.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2000.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2002.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2007.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2008.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2009.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2010.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2011.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2012.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2013.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2100.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2101.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2119.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2153.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2200.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2207.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2208.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2211.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2213.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2214.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2215.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2216.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2219.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2225.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2226.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2227.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2229.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2231.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2234.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2235.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2237.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2241.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2242.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2243.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2244.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2245.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA2246.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA3061.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA3075.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA3076.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA3077.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA3147.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA5350.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA5351.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA5359.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA5360.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA5363.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA5364.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA5365.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA5366.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA5368.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA5369.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA5370.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA5371.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA5372.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA5373.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA5374.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA5379.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA5384.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA5385.severity = suggestion
|
|
||||||
dotnet_diagnostic.CA5397.severity = suggestion
|
|
@ -1,3 +1,4 @@
|
|||||||
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using FluentAssertions;
|
using FluentAssertions;
|
||||||
@ -36,7 +37,10 @@ public void SmokeTestSetup()
|
|||||||
{
|
{
|
||||||
var options = new FirefoxOptions();
|
var options = new FirefoxOptions();
|
||||||
options.AddArguments("--headless");
|
options.AddArguments("--headless");
|
||||||
driver = new FirefoxDriver(options);
|
var service = FirefoxDriverService.CreateDefaultService();
|
||||||
|
|
||||||
|
// Timeout as windows automation tests seem to take alot longer to get going
|
||||||
|
driver = new FirefoxDriver(service, options, new TimeSpan(0, 4, 0));
|
||||||
|
|
||||||
_runner = new NzbDroneRunner(LogManager.GetCurrentClassLogger());
|
_runner = new NzbDroneRunner(LogManager.GetCurrentClassLogger());
|
||||||
_runner.KillAll();
|
_runner.KillAll();
|
||||||
|
@ -67,9 +67,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceInstall", "ServiceHe
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceUninstall", "ServiceHelpers\ServiceUninstall\ServiceUninstall.csproj", "{0E2B067C-4A97-430C-8767-D19ACB09A63A}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceUninstall", "ServiceHelpers\ServiceUninstall\ServiceUninstall.csproj", "{0E2B067C-4A97-430C-8767-D19ACB09A63A}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{9F3639DF-2D16-409D-AEEA-1844BC9DABE9}"
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{0C7E5F5A-C4CC-4945-B399-1E1C9817CC45}"
|
||||||
ProjectSection(SolutionItems) = preProject
|
ProjectSection(SolutionItems) = preProject
|
||||||
.editorconfig = .editorconfig
|
..\.editorconfig = ..\.editorconfig
|
||||||
EndProjectSection
|
EndProjectSection
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
|
9
src/omnisharp.json
Normal file
9
src/omnisharp.json
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"RoslynExtensionsOptions": {
|
||||||
|
"enableAnalyzersSupport": true,
|
||||||
|
"DocumentAnalysisTimeoutMs": 60000
|
||||||
|
},
|
||||||
|
"FormattingOptions": {
|
||||||
|
"enableEditorConfigSupport": true
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user