Giter Club home page Giter Club logo

codingstandards's Introduction

CodingStandards

don't fuck up

##General ###functions

  • privateMethod();
  • PublicMethod();
  • internalMethod();

###variables

  • PublicVariable
  • privateVariable
  • _internalVariable

###Don't

  • Use_Snake_Case_Ever
  • var myVariable = "you are a sick fuck. use your types!";

##Language Specific ###C-Sharp

  • All brackets get their own line
  • Don't not use inline if/else statements
  • Use of var is restricted (temp variables are allowed, if casted in the same line)
public void PublicMethod()  //capitalize public methods
{                           //brackets get their own line
  //do something
}
private void privateMethod() //lowwercase private methods
{
  //do something
}

public class SomeClass
{
  public string publicMember = "public";
  private string _instanceVariable = "underscore";
  
  public SomeClass()
  {
    //constructor comes after members
  }
  
  public string PublicVariable
  {
    get { return _instanceVariable; }
    set 
    {
      if(_instanceVaraible != value)
      { //always use brackets for if statements
        _instanceVaraible = value;
      }
    }
  }
  
  private void privateMethod()
  { 
    //do something
  }
  public void PublicMethod()
  {
    this.privateMethod(); //use the 'this' keyword, when calling methods an instance object
  }
}

###CSS

  • Open bracket ends a previous line
  • Close bracket has its own line
.class { /* opening brackets end the selector line */
  color: #EEE; /* use short color codes */
  background-color: #333; /* only one attribute per line */
} /* close brackets get their own line */

.class a { /* add more specific selectors below */
  color: #FFF; 
}

###Javascript Don't use Javascript

codingstandards's People

Contributors

sckelemen avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.