Skip to content

Commit b10bc70

Browse files
committedAug 10, 2023
Going public
0 parents  commit b10bc70

Some content is hidden

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

64 files changed

+10396
-0
lines changed
 

‎.eslintrc.js

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
module.exports = {
2+
ignorePatterns: [
3+
'**/dist',
4+
'**/node_modules',
5+
],
6+
parserOptions: {
7+
project: "./tsconfig.base.json"
8+
},
9+
extends: [
10+
'airbnb-base',
11+
'airbnb-typescript'
12+
],
13+
rules: {
14+
"react/jsx-filename-extension": 0,
15+
"no-underscore-dangle": 0
16+
}
17+
};

‎.github/dependabot.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: /
5+
schedule:
6+
interval: weekly
7+
commit-message:
8+
prefix: '[SKIP CI] '
9+
open-pull-requests-limit: 10
10+
- package-ecosystem: npm
11+
directory: /
12+
schedule:
13+
interval: daily
14+
commit-message:
15+
prefix: '[BUILD] '
16+
open-pull-requests-limit: 10

0 commit comments

Comments
 (0)
Please sign in to comment.