Skip to content
This repository has been archived by the owner on Aug 4, 2021. It is now read-only.

Commit

Permalink
Prepare for 1.0 (#48)
Browse files Browse the repository at this point in the history
* Update dependencies

* Make tests compatible with rollup1.0

* Make assertions windows compatible

* Replace eslint config with that of rollup
  • Loading branch information
lukastaegert authored Dec 11, 2018
1 parent ea116b6 commit 581beeb
Show file tree
Hide file tree
Showing 6 changed files with 5,273 additions and 3,624 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
dist
test/files
32 changes: 30 additions & 2 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
extends: airbnb/base
extends:
- eslint:recommended
- plugin:import/errors
- plugin:import/warnings
parserOptions:
ecmaVersion: 8
sourceType: module
env:
es6: true
node: true
rules:
prefer-template: 0
indent: [ 2, 2, { "SwitchCase": 1 } ]
semi: [ 2, "always" ]
keyword-spacing: [ 2, { "before": true, "after": true } ]
space-before-blocks: [ 2, "always" ]
no-mixed-spaces-and-tabs: [ 2, "smart-tabs" ]
no-cond-assign: 0
no-unused-vars: 2
object-shorthand: [ 2, "always" ]
no-const-assign: 2
no-class-assign: 2
no-this-before-super: 2
no-var: 2
no-unreachable: 2
valid-typeof: 2
quote-props: [ 2, "as-needed" ]
one-var: [ 2, "never" ]
prefer-arrow-callback: 2
prefer-const: [ 2, { "destructuring": "all" } ]
arrow-spacing: 2

Loading

0 comments on commit 581beeb

Please sign in to comment.