File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,13 @@ linters:
33 - prettier --write --config ./.prettierrc.yml
44 - tslint --project ./tsconfig.json -t codeFrame --fix
55 - git add
6- " (src/**/*.spec.ts, test/**/*.ts) " :
6+ " (src/**/*.spec.ts| test/**/*.ts) " :
77 - prettier --write --config ./.prettierrc.yml
8- - tslint --project ./tsconfig.jest.json -t codeFrame --fix
8+ # FIXME tslint will not work because of the following error
9+ # ✖ tslint --project ./tsconfig.jest.json -t codeFrame --fix found some errors. Please fix them and try committing again.
10+ # '/Users/michaelwittwer/dev/shiftcode/dynamo-easy/test/models/complex.model.ts' is not included in project.
11+ # - tslint --project ./tsconfig.jest.json -t codeFrame --fix
12+ - git add
913 " **/package.json " :
1014 - sort-package-json
1115 - git add
Original file line number Diff line number Diff line change 11import { ObjectMapper } from './object.mapper'
22
3- // TODO remove test comment
43describe ( 'object mapper' , ( ) => {
54 describe ( 'to db' , ( ) => {
65 it ( 'should work' , ( ) => {
Original file line number Diff line number Diff line change @@ -10,8 +10,6 @@ import {
1010} from '../../src/dynamo-easy'
1111import { NestedObject } from './nested-object.model'
1212
13- // TODO remove test comment
14-
1513@Model ( { tableName : 'complex_model' } )
1614export class ComplexModel {
1715 @PartitionKey ( )
You can’t perform that action at this time.
0 commit comments