Skip to content

Commit c2a176c

Browse files
authored
Merge pull request #94 from filestack/feature/typescript
Feature/typescript
2 parents 0427a14 + 332a224 commit c2a176c

File tree

10 files changed

+12481
-8883
lines changed

10 files changed

+12481
-8883
lines changed

.editorconfig

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1+
# http://editorconfig.org
12
root = true
23

3-
[{src,scripts,config}/**.{ts,json,js}]
4+
[*]
5+
indent_style = space
6+
indent_size = 2
47
end_of_line = lf
58
charset = utf-8
6-
quote_type = single
79
trim_trailing_whitespace = true
810
insert_final_newline = true
9-
indent_style = space
10-
indent_size = 2
1111

1212
[*.md]
13-
insert_final_newline = false
14-
trim_trailing_whitespace = false
13+
trim_trailing_whitespace = true

.eslintrc

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"parser": "babel-eslint",
3-
"extends": "airbnb",
3+
"extends": ["airbnb", "prettier", "prettier/react"],
44
"parserOptions": {
55
"ecmaVersion": 6,
66
"sourceType": "module",
@@ -30,11 +30,7 @@
3030
}
3131
}
3232
],
33-
"plugins": [
34-
"react",
35-
"jsx-a11y",
36-
"babel"
37-
],
33+
"plugins": ["react", "jsx-a11y", "babel"],
3834
"env": {
3935
"browser": true,
4036
"jest": true,

.prettierrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"trailingComma": "all",
3+
"tabWidth": 2,
4+
"semi": true,
5+
"singleQuote": true,
6+
"printWidth": 180,
7+
"useTabs": false,
8+
"bracketSpacing": true,
9+
"arrowParens": "always"
10+
}

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
1-
# Change Log
1+
# Changelog
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [3.2.0](https://github.com/filestack/filestack-react/compare/v3.1.0...v3.2.0) (2020-07-29)
6+
7+
8+
### Features
9+
10+
* 🎸 add typescript type definitions ([f7a4e80](https://github.com/filestack/filestack-react/commit/f7a4e80ab44edb1e0e0858d65a9ed1c3e7214e8c))
11+
512
# [3.1.0](https://github.com/filestack/filestack-react/compare/v3.0.1...v3.1.0) (2019-07-29)
613

714

0 commit comments

Comments
 (0)