Skip to content
This repository has been archived by the owner on Jun 11, 2019. It is now read-only.

Commit

Permalink
Merge pull request #11 from divio/feature/2.0
Browse files Browse the repository at this point in the history
Upgrade to latest node and more
  • Loading branch information
vxsx committed Jul 19, 2017
2 parents 60a6d87 + d8bf55b commit 79a1a8f
Show file tree
Hide file tree
Showing 148 changed files with 1,166 additions and 6,754 deletions.
17 changes: 0 additions & 17 deletions .babelrc

This file was deleted.

3 changes: 0 additions & 3 deletions .bowerrc

This file was deleted.

319 changes: 0 additions & 319 deletions .csscomb.json

This file was deleted.

24 changes: 24 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
'use strict';

module.exports = {
// documentation about rules can be found on http://eslint.org/docs/user-guide/configuring
// based on http://eslint.org/docs/user-guide/configuring
'extends': 'eslint:recommended',
// http://eslint.org/docs/user-guide/configuring.html#specifying-environments
'env': {
'browser': true,
'node': true,
'jquery': true,
'es6': true,
},
'parser': 'babel-eslint',
'parserOptions': {
'sourceType': 'module',
},
'rules': {
// 0 = ignore, 1 = warning, 2 = error
'indent': [2, 4],
'quotes': [1, 'single'],
'comma-dangle': [1, 'always-multiline'],
},
}

0 comments on commit 79a1a8f

Please sign in to comment.