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

chore: bump dependencies #290

Merged
merged 6 commits into from Feb 14, 2020
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
41 changes: 19 additions & 22 deletions .eslintrc.js
@@ -1,30 +1,27 @@
module.exports = {
"extends": "airbnb-base",
"env": {
"jest": true,
"node": true
extends: ['airbnb-base', 'prettier'],
plugins: ['prettier'],
env: {
jest: true,
node: true
},
"rules": {
// Ignored because prettier handles this
"semi": 0,
"comma-dangle": 0,
"no-mixed-operators": 0,
"arrow-parens": 0,
rules: {
'prettier/prettier': 1,

// Repo preferences
"class-methods-use-this": 0,
"symbol-description": 0,
"no-unused-vars": [2, { "varsIgnorePattern": "^_+$" }],
"import/no-extraneous-dependencies": 0,
"no-confusing-arrow": 0,
"no-else-return": 0,
"no-prototype-builtins": 0
'class-methods-use-this': 0,
'symbol-description': 0,
'no-unused-vars': [2, { varsIgnorePattern: '^_+$' }],
'import/no-extraneous-dependencies': 0,
'no-confusing-arrow': 0,
'no-else-return': 0,
'no-prototype-builtins': 0
},
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
ecmaFeatures: {
jsx: true
}
}
}
7 changes: 0 additions & 7 deletions .lintstagedrc

This file was deleted.

3 changes: 3 additions & 0 deletions .prettierignore
@@ -0,0 +1,3 @@
test/fixtures/**/*.js
lib/
coverage/
4 changes: 4 additions & 0 deletions .prettierrc.yaml
@@ -0,0 +1,4 @@
printWidth: 100
tabWidth: 2
semi: false
singleQuote: true
7 changes: 1 addition & 6 deletions README.md
Expand Up @@ -51,16 +51,11 @@ And it also has some options. Their default values are,
"ignoreFiles": [],
"parserPlugins": [
"jsx",
"objectRestSpread",
["decorators", { "decoratorsBeforeExport": true }],
"classProperties",
"exportExtensions",
"asyncGenerators",
"functionBind",
"functionSent",
"dynamicImport",
"optionalCatchBinding",
"optionalChaining"
"functionSent"
]
}]]
}
Expand Down