Skip to content

Commit

Permalink
feat(supersetbot): re-implement labeling bot as a GitHub action
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Mar 12, 2024
1 parent 85d0d88 commit 712de13
Show file tree
Hide file tree
Showing 19 changed files with 12,530 additions and 35 deletions.
22 changes: 22 additions & 0 deletions .github/supersetbot/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"extends": "airbnb-base",
"rules": {
"import/extensions": 0,
"import/prefer-default-export": 0,
"func-names": 0,
"no-console": 0,
"class-methods-use-this": 0
},
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"requireConfigFile": false
},
"env": {
"jest": true
}
}
8 changes: 8 additions & 0 deletions .github/supersetbot/jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export default {
transform: {
},
testEnvironment: 'node',
moduleNameMapper: {
'^(\\.{1,2}/.*)\\.js$': '$1',
},
};
Loading

0 comments on commit 712de13

Please sign in to comment.