update pre-commit

This commit is contained in:
Michael Becker 2021-05-07 22:06:03 -04:00
parent 4c106e3a3a
commit a305f74c48
No known key found for this signature in database
GPG Key ID: 98C333A81F18C22C
73 changed files with 76 additions and 72 deletions

View File

@ -2,10 +2,14 @@ repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.4.0
hooks:
- id: no-commit-to-branch
- id: check-case-conflict
- id: check-merge-conflict
- id: check-yaml
- id: check-xml
- id: check-executables-have-shebangs
- id: end-of-file-fixer
- id: fix-byte-order-marker
- id: trailing-whitespace
- repo: https://github.com/jumanjihouse/pre-commit-hooks
rev: 2.1.5

View File

@ -1,4 +1,4 @@
using System;
using System;
using System.Text;
namespace MBS.Framework.CLI

View File

@ -1,4 +1,4 @@
using System;
using System;
namespace MBS.Framework.CLI
{

View File

@ -1,4 +1,4 @@
using System.Reflection;
using System.Reflection;
using System.Runtime.CompilerServices;
// Information about this assembly is defined by the following attributes.

View File

@ -1,4 +1,4 @@
//
//
// Application.cs
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// ArrayExtensions.cs
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// CardinalDirection.cs
//
// Author:

View File

@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

View File

@ -1,4 +1,4 @@
using System;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;

View File

@ -1,4 +1,4 @@
//
//
// ExtensionMethods.cs - implements generic-typed extension methods for System.Collections classes
//
// Author:

View File

@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
namespace MBS.Framework

View File

@ -1,4 +1,4 @@
//
//
// CommandLine.cs
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// CommandLineOption.cs
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// CommandLineOptionValueType.cs
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// CommandStylePresets.cs
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// Context.cs
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// ContextChangedEvent.cs
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// DefaultCommandLine.cs
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// Color.cs
//
// Author:

View File

@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

View File

@ -1,4 +1,4 @@
using System;
using System;
namespace MBS.Framework.Drawing
{
public struct Dimension3D : ICloneable

View File

@ -1,4 +1,4 @@
//
//
// Measurement.cs - represents a tuple of a numeric value and a unit of measure
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// MeasurementUnit.cs - indicates the unit of a Measurement
//
// Author:

View File

@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

View File

@ -1,4 +1,4 @@
//
//
// Rectangle.cs
//
// Author:

View File

@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

View File

@ -1,4 +1,4 @@
//
//
// Feature.cs
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// CaseSensitiveHandling.cs
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// File.cs
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// ISupportsExtraData.cs - interface for providing GetExtraData / SetExtraData methods
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// InstallationStatus.cs
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// Condition.cs - represents a conditional statement which defines a comparison of a named property with a constant value
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// ConditionCombination.cs - indicates the type of combination applied to a series of conditional statements
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// ConditionComparison.cs - indicates the type of comparison to use with a conditional statement
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// ConditionGroup.cs - a group of IConditionalStatements joined by a ConditionCombination
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// ConditionalStatementCollection.cs - a collection of IConditionalStatements
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// IConditionalStatement.cs - interface defining the minimum functionality required to implement a conditional statement
//
// Author:

View File

@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using MBS.Framework.Logic.Expressions;

View File

@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
namespace MBS.Framework.Logic

View File

@ -1,4 +1,4 @@
using System;
using System;
namespace MBS.Framework.Logic.Expressions
{
public enum ArithmeticOperation

View File

@ -1,4 +1,4 @@
using System;
using System;
namespace MBS.Framework.Logic.Expressions
{
public enum BooleanExpressionComparison

View File

@ -1,4 +1,4 @@
using System;
using System;
namespace MBS.Framework.Logic.Expressions
{
public class ComplexExpression : Expression

View File

@ -1,4 +1,4 @@
using System;
using System;
namespace MBS.Framework.Logic.Expressions
{
public class EmptyExpression : Expression

View File

@ -1,4 +1,4 @@
using System;
using System;
namespace MBS.Framework.Logic.Expressions
{
public class LiteralExpression<T> : Expression

View File

@ -1,4 +1,4 @@
using System;
using System;
namespace MBS.Framework.Logic.Expressions
{
public class VariableExpression : Expression

View File

@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
namespace MBS.Framework.Logic

View File

@ -1,4 +1,4 @@
using System;
using System;
namespace MBS.Framework.Logic
{
public class VariableRequestedEventArgs : EventArgs

View File

@ -1,4 +1,4 @@
//
//
// ArrayExtensions.cs
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// Plugin.cs
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// AssemblyInfo.cs
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// Reflection.cs
//
// Author:

View File

@ -1,4 +1,4 @@
using System;
using System;
namespace MBS.Framework.Scripting
{
public class ScriptEnvironment

View File

@ -1,4 +1,4 @@
using System;
using System;
using System.Text;
namespace MBS.Framework.Scripting.Strings

View File

@ -1,4 +1,4 @@
using System;
using System;
namespace MBS.Framework.Scripting.Strings
{

View File

@ -1,4 +1,4 @@
using System;
using System;
using MBS.Framework.Logic.Conditional;
namespace MBS.Framework.Scripting.Strings.StringComponents

View File

@ -1,4 +1,4 @@
using System;
using System;
namespace MBS.Framework.Scripting.Strings.StringComponents
{
public class LiteralStringComponent : StringComponent

View File

@ -1,4 +1,4 @@
using System.Security.Cryptography;
using System.Security.Cryptography;
namespace MBS.Framework.Security.Cryptography
{

View File

@ -1,4 +1,4 @@
//
//
// SeekDirection.cs
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// Option.cs
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// BooleanSetting.cs
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// ChoiceSetting.cs
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// CollectionSetting.cs
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// CommandSetting.cs
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// CustomSetting.cs - provides a way to display custom controls in the settings dialog
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// FileSetting.cs
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// GroupSetting.cs
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// RangeSetting.cs
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// TextSetting.cs
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// OptionPanel.cs
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// SettingsProfile.cs
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// OptionProvider.cs
//
// Author:

View File

@ -1,4 +1,4 @@
//
//
// SettingValue.cs
//
// Author:

View File

@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
namespace MBS.Framework