Skip to content

Commit e430306

Browse files
add base monorepo and action-chain package
1 parent 7774eaf commit e430306

16 files changed

+20080
-0
lines changed

.eslintignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
packages/*/**/node_modules/
2+
packages/*/**/lib/
3+
packages/*/**/es/
4+
packages/*/**/dist/
5+
**/build/
6+
**/*.min.js
7+
**/bundle.js
8+
**/coverage/
9+
**/vendor/
10+
*.d.ts

.eslintrc.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"parserOptions": {
3+
"ecmaVersion": 2017,
4+
"sourceType": "module",
5+
"ecmaFeatures": {
6+
"jsx": true
7+
}
8+
},
9+
"env": {
10+
"browser": true,
11+
"node": true,
12+
"es6": true
13+
},
14+
"extends": [ "standard", "standard-jsx", "plugin:prettier/recommended", "prettier/react", "prettier/standard" ],
15+
"rules": {
16+
"linebreak-style": [ "error", "unix" ]
17+
},
18+
"overrides": [
19+
{
20+
"files": [ "*.ts", "*.tsx" ],
21+
"parser": "typescript-eslint-parser",
22+
"plugins": [ "typescript" ],
23+
"rules": {
24+
"import/export": "off",
25+
"no-dupe-class-members": "off",
26+
"no-empty-pattern": "off",
27+
"no-redeclare": "off",
28+
"no-unused-vars": "off",
29+
"no-undef": "off",
30+
"no-unused-expressions": "off",
31+
"no-use-before-define": "off",
32+
"no-useless-constructor": "off",
33+
"typescript/no-unused-vars": "error"
34+
}
35+
}
36+
]
37+
}

.prettierignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package-lock.json
2+
package.json
3+
**/dist
4+
**/lib
5+
**/es
6+
**/build
7+
**/coverage
8+
/node_modules
9+
*.md

.prettierrc.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"trailingComma": "es5",
3+
"singleQuote": true,
4+
"semi": false,
5+
"arrowParens": "always",
6+
"overrides": [
7+
{
8+
"files": "*.md",
9+
"options": {
10+
"trailingComma": "none"
11+
}
12+
}
13+
]
14+
}

0 commit comments

Comments
 (0)