Jeff Walker
Jeff Walker
When you develop an Ember.js app you need to set `type="text/x-handlebars"` customizing the html bundle: ``` bundles.Add("views/templates", c => { c.ContentType = "text/x-handlebars"; }); ``` This only works in Debug....
I would like there to be support for compiling Ember Handlebars templates in Cassette. I know there are several pull requests out there for compiling Handlebars templates. However, Ember extends...
We have in our config: ``` num-read-checks-before-scale-down: 30 num-write-checks-before-scale-down: 30 always-decrease-rw-together: true allow-scaling-down-reads-on-0-percent: true allow-scaling-down-writes-on-0-percent: true ``` These settings don't play well together and make it effectively impossible that it...
If you create an exhaustive matching switch statement on a flags enum an error should be reported because that doesn't make sense.
``` System.NullReferenceException: Object reference not set to an instance of an object. at ExhaustiveMatching.Analyzer.TypeSymbolExtensions.GetFullName(ISymbol symbol) at ExhaustiveMatching.Analyzer.SwitchStatementAnalyzer.GetTypeSymbolMatched(SyntaxNodeAnalysisContext context, ITypeSymbol type, CasePatternSwitchLabelSyntax casePattern, HashSet`1 allCases, Boolean isClosed) at ExhaustiveMatching.Analyzer.SwitchStatementAnalyzer.c__DisplayClass3_0.b__1(CasePatternSwitchLabelSyntax casePattern) at...
I don't entirely remember what this was supposed to be about. However, it is referencing the unit tests `MirrorHierarchy` and `MirrorHierarchyMustBeCovered`, and the example `MirrorExample` in `MirrorHierarchy.cs`. I think the...
The readme was planned to have a "Why?" section but it was dropped. Write one. Discussing the expression problem would be good.
If nullable reference types are enabled, we should enforce requirements for a `case null:` if that isn't already enforced by the compiler.
Add a quick fix for error EM011 that a type is not in its parent's list of cases, that adds it.