Skip to content
This repository was archived by the owner on Feb 24, 2023. It is now read-only.

Commit 119229b

Browse files
committed
better test, better paginator
1 parent 8662e0b commit 119229b

File tree

17 files changed

+266
-283
lines changed

17 files changed

+266
-283
lines changed

.eslintrc.js

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,12 @@ module.exports = {
1414
project: './tsconfig.json',
1515
},
1616
rules: {
17-
'@typescript-eslint/no-explicit-any': false,
1817
'@typescript-eslint/consistent-type-assertions': ['error', { assertionStyle: 'as' }],
1918
'@typescript-eslint/no-floating-promises': ['error'],
2019
'@typescript-eslint/explicit-function-return-type': ['warn', { allowExpressions: true }],
2120
'@typescript-eslint/no-unused-vars': ['warn', { varsIgnorePattern: '(^h$|Component$)' }],
22-
// Need these two for TSXDom.
23-
'@typescript-eslint/no-namespace': false,
24-
'@typescript-eslint/no-empty-interface': false,
21+
// Use sparingly ;).
22+
'@typescript-eslint/no-explicit-any': false,
2523
'@typescript-eslint/ban-ts-ignore': false,
26-
'prefer-spread': false,
2724
},
2825
};

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ jobs:
1111
- name: Test and Upload Coverage
1212
script: npm run test:coveralls
1313
- name: Bundle Extension
14-
script: npx ts-node bundle.ts
14+
script: npx ts-node scripts/bundle.ts
1515
- name: Lint
1616
script: npm run lint

0 commit comments

Comments
 (0)