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

Commit

Permalink
Merge pull request #290 from KubaJastrz/maintenance
Browse files Browse the repository at this point in the history
chore: bump dependencies
  • Loading branch information
chinesedfan committed Feb 14, 2020
2 parents d61ab3d + 40cd776 commit 02e907a
Show file tree
Hide file tree
Showing 25 changed files with 5,260 additions and 7,377 deletions.
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

0 comments on commit 02e907a

Please sign in to comment.