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

Commit 581beeb

Browse files
authored
Prepare for 1.0 (#48)
* Update dependencies * Make tests compatible with rollup1.0 * Make assertions windows compatible * Replace eslint config with that of rollup
1 parent ea116b6 commit 581beeb

File tree

6 files changed

+5273
-3624
lines changed

6 files changed

+5273
-3624
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
dist
2+
test/files

.eslintrc.yml

Lines changed: 30 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1-
extends: airbnb/base
1+
extends:
2+
- eslint:recommended
3+
- plugin:import/errors
4+
- plugin:import/warnings
5+
parserOptions:
6+
ecmaVersion: 8
7+
sourceType: module
8+
env:
9+
es6: true
10+
node: true
211
rules:
3-
prefer-template: 0
12+
indent: [ 2, 2, { "SwitchCase": 1 } ]
13+
semi: [ 2, "always" ]
14+
keyword-spacing: [ 2, { "before": true, "after": true } ]
15+
space-before-blocks: [ 2, "always" ]
16+
no-mixed-spaces-and-tabs: [ 2, "smart-tabs" ]
17+
no-cond-assign: 0
18+
no-unused-vars: 2
19+
object-shorthand: [ 2, "always" ]
20+
no-const-assign: 2
21+
no-class-assign: 2
22+
no-this-before-super: 2
23+
no-var: 2
24+
no-unreachable: 2
25+
valid-typeof: 2
26+
quote-props: [ 2, "as-needed" ]
27+
one-var: [ 2, "never" ]
28+
prefer-arrow-callback: 2
29+
prefer-const: [ 2, { "destructuring": "all" } ]
30+
arrow-spacing: 2
31+

0 commit comments

Comments
 (0)