Skip to content

Commit d21f125

Browse files
committed
Setup build environment
1 parent e7770ef commit d21f125

File tree

621 files changed

+16140
-1772
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

621 files changed

+16140
-1772
lines changed

.browserslistrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Chrome >= 55
2+
Firefox >= 53

.editorconfig

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

34
[*]
5+
indent_style = space
6+
indent_size = 2
47
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
510
insert_final_newline = true
611

7-
[*.{js,json,yml}]
8-
charset = utf-8
9-
indent_style = space
10-
indent_size = 2
12+
[*.md]
13+
trim_trailing_whitespace = false

.eslintignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/*
2+
!/src
3+
!/test

.eslintrc.js

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
module.exports = {
2-
"env": {
3-
"browser": true,
4-
"es2021": true
2+
root: true,
3+
extends: [
4+
require.resolve('@gera2ld/plaid/eslint'),
5+
'plugin:prettier/recommended',
6+
],
7+
settings: {
8+
'import/resolver': {
9+
'babel-module': {},
510
},
6-
"extends": [
7-
"standard"
8-
],
9-
"parserOptions": {
10-
"ecmaVersion": "latest",
11-
"sourceType": "module"
11+
react: {
12+
pragma: 'VM',
1213
},
13-
"rules": {
14-
}
15-
}
14+
},
15+
globals: {
16+
VM: true,
17+
},
18+
};

.gitignore

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
1+
node_modules
2+
*.log
3+
*.lock
4+
/.idea
5+
/dist
6+
/.nyc_output
7+
/coverage
8+
/types
9+
110
.yarn/*
11+
!.yarn/cache
212
!.yarn/patches
313
!.yarn/plugins
414
!.yarn/releases
515
!.yarn/sdks
6-
!.yarn/versions
7-
8-
# Swap the comments on the following lines if you don't wish to use zero-installs
9-
# Documentation here: https://yarnpkg.com/features/zero-installs
10-
!.yarn/cache
11-
#.pnp.*
16+
!.yarn/versions

.husky/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_

.husky/pre-push

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
npm run lint

.pnp.cjs

Lines changed: 9085 additions & 887 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.prettierrc.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"singleQuote": true
3+
}
Binary file not shown.

0 commit comments

Comments
 (0)