File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2828 "build" : " tsc --outDir build && ncc -m build -o dist ./index.ts" ,
2929 "prettify" : " prettier --write src/**/*.ts index.ts" ,
3030 "lint" : " eslint ./src --ext .ts" ,
31- "lint:test" : " eslint ./tests --ext .ts" ,
31+ "lint:test" : " eslint --config ./tests/.eslintrc.json ./tests --ext .ts" ,
3232 "prepare" : " husky" ,
3333 "test" : " jest --config ./tests/jest.config.ts" ,
3434 "qa" : " yarn lint && yarn lint:test && yarn test"
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ {
2+ "extends" : [
3+ " ../.eslintrc.json"
4+ ],
5+ "parserOptions" : {
6+ "project" : true ,
7+ "tsconfigRootDir" : " ./"
8+ },
9+ "overrides" : [
10+ {
11+ "files" : [" ./**/*.ts" ],
12+ "rules" : {
13+ "@typescript-eslint/unbound-method" : " off" ,
14+ "@typescript-eslint/require-await" : " off" ,
15+ "@typescript-eslint/no-floating-promises" : " off"
16+ }
17+ }
18+ ]
19+ }
You can’t perform that action at this time.
0 commit comments