Skip to content
This repository was archived by the owner on Aug 4, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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