DevMountain / dev-chat

0 stars 7 forks source link

Code Snippets #2

Open devlemire opened 7 years ago

devlemire commented 7 years ago

Priority: Very Minor

Code snippets using tabs are appearing to have over indentation, if tabs were replaced with two spaces code would have proper looking indentation.

devlemire commented 7 years ago

Tabs:

const initialState = {
    posts: []
};

export default function post( state = initialState, action ) {
    switch ( action.type ) {
        default: return state;
    }
}

Spaces:

const initialState = {
  posts: []
};

export default function post( state = initialState, action ) {
  switch ( action.type ) {
    default: return state;
  }
}