style(v2): basic sidebar component (#1020)

This commit is contained in:
Yangshun Tay 2018-10-07 01:23:41 -07:00 committed by Endilie Yacop Sucipto
parent aae5c4dc85
commit 2e9656917c
7 changed files with 110 additions and 48 deletions

View file

@ -13,11 +13,12 @@ module.exports = {
rules: {
'no-console': OFF,
'func-names': OFF,
'react/jsx-closing-bracket-location': OFF, // Conflicts with Prettier.
'react/jsx-filename-extension': OFF,
'react/jsx-one-expression-per-line': OFF,
'react/prop-types': OFF,
'react/destructuring-assignment': OFF, // too many lines
'import/no-unresolved': WARNING, // because it couldn't resolve webpack alias
'react/destructuring-assignment': OFF, // Too many lines.
'import/no-unresolved': WARNING, // Because it couldn't resolve webpack alias.
'react/prefer-stateless-function': WARNING,
},
};