File tree Expand file tree Collapse file tree 6 files changed +4
-63
lines changed Expand file tree Collapse file tree 6 files changed +4
-63
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "parser": "@typescript-eslint/parser",
3
- "plugins": [
4
- "@typescript-eslint",
5
- "eslint-comments",
6
- "import",
7
- "prettier",
8
- "promise"
9
- ],
10
- "extends": [
11
- "airbnb-base",
12
- "eslint:recommended",
13
- "prettier",
14
- "plugin:@typescript-eslint/recommended",
15
- "plugin:import/errors",
16
- "plugin:import/warnings",
17
- "plugin:promise/recommended",
18
- "plugin:prettier/recommended"
19
- ],
20
- "env": {
21
- "es6": true,
22
- "node": true,
23
- "commonjs": true
24
- },
25
- "parserOptions": {
26
- "ecmaVersion": 2020,
27
- "sourceType": "module",
28
- "requireConfigFile": false
29
- },
30
- "rules": {
31
- "no-nested-ternary": 0,
32
- "import/extensions": 0,
33
- "import/no-unresolved": 0,
34
- "no-param-reassign": [2, { "props": false }],
35
- "@typescript-eslint/no-namespace": 0,
36
- "@typescript-eslint/no-explicit-any": 0,
37
- "@typescript-eslint/explicit-module-boundary-types": 0,
38
- "@typescript-eslint/no-non-null-assertion": 0
39
- }
2
+ "extends": "@bubkoo/eslint-config"
40
3
}
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
. " $( dirname " $0 " ) /_/husky.sh"
3
- . " $( dirname " $0 " ) /common.sh"
4
3
5
- yarn commitlint --edit " $1 "
4
+ npx @ commitlint/cli --extends @bubkoo/commitlint-config --edit " $1 "
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
. " $( dirname " $0 " ) /_/husky.sh"
3
- . " $( dirname " $0 " ) /common.sh"
4
3
5
- yarn lint-staged
4
+ npx lint-staged
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
{
2
- "compilerOptions" : {
3
- "module" : " commonjs" ,
4
- "moduleResolution" : " node" ,
5
- "skipLibCheck" : true ,
6
- "esModuleInterop" : true ,
7
- "noImplicitAny" : true ,
8
- "noEmitOnError" : true ,
9
- "noUnusedLocals" : true ,
10
- "strictNullChecks" : true ,
11
- "resolveJsonModule" : true ,
12
- "experimentalDecorators" : true ,
13
- "outDir" : " lib" ,
14
- "target" : " es5" ,
15
- "lib" : [" dom" , " es2015" ]
16
- },
2
+ "extends" : " @bubkoo/tsconfig" ,
17
3
"include" : [" src/**/*.ts" ]
18
4
}
You can’t perform that action at this time.
0 commit comments