Skip to content
This repository has been archived by the owner on Sep 23, 2020. It is now read-only.

Commit

Permalink
Merge branch 'master' of https://github.com/exceljs/exceljs
Browse files Browse the repository at this point in the history
  • Loading branch information
brunoargolo committed Nov 2, 2019
2 parents c140ab9 + 1c11a2c commit 719dc49
Show file tree
Hide file tree
Showing 260 changed files with 4,700 additions and 3,867 deletions.
4 changes: 3 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{
"presets": ["@babel/preset-env"]
"presets": [
"@babel/preset-env"
]
}
File renamed without changes.
14 changes: 8 additions & 6 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
{
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "script"
},
"extends": [
"airbnb",
"prettier"
"airbnb-base",
"prettier",
"plugin:node/recommended"
],
"parser": "babel-eslint",
"env": {
"es6": true,
"mocha": true,
Expand All @@ -32,11 +31,14 @@
"prefer-rest-params": ["off"],
"quotes": ["error", "single"],
"semi": ["error", "always"],
"space-before-function-paren": ["error", "never"],
"space-before-function-paren": ["error", {"anonymous": "never", "named": "never", "asyncArrow": "always"}],
"strict": ["off"],
"class-methods-use-this": ["off"],
"no-return-assign": ["off"],
"no-continue": ["off"],
"default-case": ["off"],
"object-curly-spacing": ["error", "never"]
"object-curly-spacing": ["error", "never"],
"node/process-exit-as-throw": ["off"],
"prefer-object-spread": ["off"]
}
}
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,9 @@ package-lock.json

# optional switch off tests
.disable-test-*

# jasmine
_SpecRunner.html

# Mac files
.DS_Store
3 changes: 2 additions & 1 deletion .prettier
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"bracketSpacing": false,
"printWidth": 160,
"trailingComma": "all"
"trailingComma": "all",
"bracketSpacing": false
}
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ script:
- npm test
notifications:
email: false
_webhooks: _
Loading

0 comments on commit 719dc49

Please sign in to comment.