Skip to content

Commit b54ef4d

Browse files
MarkuSchickmarkus0x1
authored andcommitted
feat: run prettier and linter
1 parent eeb403f commit b54ef4d

File tree

14 files changed

+102
-281
lines changed

14 files changed

+102
-281
lines changed

.eslintrc.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ module.exports = {
99
env: {
1010
node: true,
1111
},
12-
rules: {},
13-
ignorePatterns: ['node_modules', 'dist'],
12+
rules: { '@typescript-eslint/no-explicit-any': 'off' },
13+
ignorePatterns: ['node_modules', 'dist', 'data', 'build', 'src/vendors'],
1414
};

.github/workflows/ci.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: Use Node.js
17+
uses: actions/setup-node@v3
18+
with:
19+
node-version: '18.x'
20+
- name: Install dependencies
21+
run: npm ci
22+
23+
- name: Linting
24+
run: npm run lint
25+
26+
- name: Formatting
27+
run: npm run format

0 commit comments

Comments
 (0)