Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 17ee1c6

Browse files
authoredMar 7, 2022
Feature/bigChanges (schummar#13)
feat: resize columns feat: move columns feat: date filter feat: theming feat: overhaulted filter api docs: started adding docs
1 parent 3f7a2ee commit 17ee1c6

File tree

99 files changed

+36961
-10905
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+36961
-10905
lines changed
 

‎.eslintrc.cjs

+1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ module.exports = {
55
rules: {
66
'@typescript-eslint/no-explicit-any': 'off',
77
},
8+
ignorePatterns: ['scripts'],
89
};

‎.github/workflows/tests.yml

-17
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,6 @@ on:
77
branches: [master]
88

99
jobs:
10-
test:
11-
runs-on: ubuntu-latest
12-
13-
strategy:
14-
matrix:
15-
node-version: [14.x, 16.x]
16-
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
17-
18-
steps:
19-
- uses: actions/checkout@v2
20-
- name: Use Node.js ${{ matrix.node-version }}
21-
uses: actions/setup-node@v2
22-
with:
23-
node-version: ${{ matrix.node-version }}
24-
- run: npm ci
25-
- run: npm test
26-
2710
lint:
2811
runs-on: ubuntu-latest
2912

0 commit comments

Comments
 (0)
Please sign in to comment.